Skip to content

Instantly share code, notes, and snippets.

@MattHarrington
Forked from nickharris/gist:4058313
Created April 20, 2013 22:25
Show Gist options
  • Save MattHarrington/5427668 to your computer and use it in GitHub Desktop.
Save MattHarrington/5427668 to your computer and use it in GitHub Desktop.
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; }
[DataMember(Name = "sas")]
public string SAS { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment