Winify – Diff between revs 39 and 44

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 39 Rev 44
Line 10... Line 10...
10 /// </summary> 10 /// </summary>
11 public class GotifyNotification 11 public class GotifyNotification
12 { 12 {
13 #region Public Enums, Properties and Fields 13 #region Public Enums, Properties and Fields
Line 14... Line 14...
14   14  
15 [JsonProperty(PropertyName = "id")] -  
Line 16... Line 15...
16 public int Id { get; set; } 15 [JsonProperty(PropertyName = "id")] public int Id { get; set; }
17   -  
Line 18... Line 16...
18 [JsonProperty(PropertyName = "appid")] 16  
19 public int AppId { get; set; } 17 [JsonProperty(PropertyName = "appid")] public int AppId { get; set; }
Line 20... Line 18...
20   18  
21 [JsonProperty(PropertyName = "message")] -  
Line 22... Line 19...
22 public string Message { get; set; } 19 [JsonProperty(PropertyName = "message")]
23   20 public string Message { get; set; }
Line 24... Line 21...
24 [JsonProperty(PropertyName = "title")] 21  
25 public string Title { get; set; } -  
Line 26... Line -...
26   -  
27 [JsonProperty(PropertyName = "priority")] 22 [JsonProperty(PropertyName = "title")] public string Title { get; set; }
Line 28... Line 23...
28 public int Priority { get; set; } 23  
29   24 [JsonProperty(PropertyName = "priority")]
30 [JsonProperty(PropertyName = "date")] 25 public int Priority { get; set; }
31 public DateTime Date { get; set; } 26