Skip to content

Instantly share code, notes, and snippets.

@dontpaniclabsgists
Created August 23, 2017 15:09
Show Gist options
  • Save dontpaniclabsgists/1cac8394fe764d74f7c8f2bf4daabfeb to your computer and use it in GitHub Desktop.
Save dontpaniclabsgists/1cac8394fe764d74f7c8f2bf4daabfeb to your computer and use it in GitHub Desktop.
Cosmos1_1
class Note
{
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
[JsonProperty(PropertyName = "customerid")]
public string CustomerId { get; set; }
[JsonProperty(PropertyName = "text")]
public string Text { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment