Created
August 23, 2017 15:09
-
-
Save dontpaniclabsgists/1cac8394fe764d74f7c8f2bf4daabfeb to your computer and use it in GitHub Desktop.
Cosmos1_1
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
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