blob sas demo todoitem
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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