Winify – Diff between revs 1 and 24

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 1 Rev 24
Line 1... Line 1...
1 using System; 1 using System;
2 using Newtonsoft.Json; 2 using Newtonsoft.Json;
-   3 using Servers;
Line 3... Line 4...
3   4  
4 namespace Winify.Gotify 5 namespace Winify.Gotify
5 { 6 {
6 public class GotifyNotification 7 public class GotifyNotification
Line 23... Line 24...
23 public int Priority { get; set; } 24 public int Priority { get; set; }
Line 24... Line 25...
24   25  
25 [JsonProperty(PropertyName = "date")] 26 [JsonProperty(PropertyName = "date")]
Line -... Line 27...
-   27 public DateTime Date { get; set; }
-   28  
26 public DateTime Date { get; set; } 29 public Server Server { get; set; }
27   30  
28 #endregion 31 #endregion
29 } 32 }