Skip to content

Instantly share code, notes, and snippets.

@garfbradaz
Created October 10, 2018 10:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save garfbradaz/d19fa06eb1a7d6ca80a6b308775f31c5 to your computer and use it in GitHub Desktop.
Save garfbradaz/d19fa06eb1a7d6ca80a6b308775f31c5 to your computer and use it in GitHub Desktop.
Simple JSON Object for Azure Function Demo
[Serializable]
public partial class TestToDo
{
[JsonProperty("userId")]
public long UserId { get; set; }
[JsonProperty("id")]
public long Id { get; set; }
[JsonProperty("title")]
public string Title { get; set; }
[JsonProperty("completed")]
public bool Completed { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment