Winify – Diff between revs 28 and 39

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 28 Rev 39
Line 4... Line 4...
4 { 4 {
5 public class GotifyApplication 5 public class GotifyApplication
6 { 6 {
7 #region Public Enums, Properties and Fields 7 #region Public Enums, Properties and Fields
Line 8... Line 8...
8   8  
-   9 [JsonProperty(PropertyName = "id")]
Line 9... Line 10...
9 [JsonProperty(PropertyName = "id")] public int Id { get; set; } 10 public int Id { get; set; }
-   11  
Line 10... Line 12...
10   12 [JsonProperty(PropertyName = "token")]
-   13 public string Token { get; set; }
Line 11... Line 14...
11 [JsonProperty(PropertyName = "token")] public string Token { get; set; } 14  
12   15 [JsonProperty(PropertyName = "name")]
Line 13... Line 16...
13 [JsonProperty(PropertyName = "name")] public string Name { get; set; } 16 public string Name { get; set; }
14   17  
Line 15... Line 18...
15 [JsonProperty(PropertyName = "description")] 18 [JsonProperty(PropertyName = "description")]
-   19 public string Description { get; set; }
Line 16... Line 20...
16 public string Description { get; set; } 20  
17   21 [JsonProperty(PropertyName = "internal")]
18 [JsonProperty(PropertyName = "internal")] 22 public bool Internal { get; set; }
19 public bool Internal { get; set; } 23