Skip to content

Instantly share code, notes, and snippets.

@nickharris
Created November 12, 2012 09:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nickharris/4058313 to your computer and use it in GitHub Desktop.
Save nickharris/4058313 to your computer and use it in GitHub Desktop.
blob sas demo todoitem
public class TodoItem
{
public int Id { get; set; }
[DataMember(Name = "text")]
public string Text { get; set; }
[DataMember(Name = "complete")]
public bool Complete { get; set; }
//Added below for blob sas generation in Mobile Services
[DataMember(Name = "containerName")]
public string ContainerName { get; set; }
[DataMember(Name = "resourceName")]
public string ResourceName { get; set; }
public string SAS { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment