Winify – Diff between revs 28 and 39

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 28 Rev 39
1 using Newtonsoft.Json; 1 using Newtonsoft.Json;
2   2  
3 namespace Winify.Gotify 3 namespace Winify.Gotify
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
8   8  
-   9 [JsonProperty(PropertyName = "id")]
9 [JsonProperty(PropertyName = "id")] public int Id { get; set; } 10 public int Id { get; set; }
-   11  
10   12 [JsonProperty(PropertyName = "token")]
-   13 public string Token { get; set; }
11 [JsonProperty(PropertyName = "token")] public string Token { get; set; } 14  
12   15 [JsonProperty(PropertyName = "name")]
13 [JsonProperty(PropertyName = "name")] public string Name { get; set; } 16 public string Name { get; set; }
14   17  
15 [JsonProperty(PropertyName = "description")] 18 [JsonProperty(PropertyName = "description")]
16 public string Description { get; set; } 19 public string Description { get; set; }
17   20  
18 [JsonProperty(PropertyName = "internal")] 21 [JsonProperty(PropertyName = "internal")]
19 public bool Internal { get; set; } 22 public bool Internal { get; set; }
20   23  
-   24 [JsonProperty(PropertyName = "image")]
21 [JsonProperty(PropertyName = "image")] public string Image { get; set; } 25 public string Image { get; set; }
22   26  
23 #endregion 27 #endregion
24 } 28 }
25 } 29 }
26   30  
27
Generated by GNU Enscript 1.6.5.90.
31
Generated by GNU Enscript 1.6.5.90.
28   32  
29   33  
30   34