Winify – Diff between revs 1 and 28

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