Winify – Diff between revs 28 and 39

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 28 Rev 39
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 15... Line 16...
15 [JsonProperty(PropertyName = "id")] public int Id { get; set; } 16 public int Id { get; set; }
-   17  
Line 16... Line 18...
16   18 [JsonProperty(PropertyName = "appid")]
17 [JsonProperty(PropertyName = "appid")] public int AppId { get; set; } 19 public int AppId { get; set; }
Line 18... Line 20...
18   20  
-   21 [JsonProperty(PropertyName = "message")]
Line 19... Line 22...
19 [JsonProperty(PropertyName = "message")] 22 public string Message { get; set; }
20 public string Message { get; set; } 23  
Line 21... Line 24...
21   24 [JsonProperty(PropertyName = "title")]
-   25 public string Title { get; set; }
Line -... Line 26...
-   26  
22 [JsonProperty(PropertyName = "title")] public string Title { get; set; } 27 [JsonProperty(PropertyName = "priority")]
Line 23... Line 28...
23   28 public int Priority { get; set; }
24 [JsonProperty(PropertyName = "priority")] 29  
25 public int Priority { get; set; } 30 [JsonProperty(PropertyName = "date")]
26   31 public DateTime Date { get; set; }