Winify – Blame information for rev 24

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using Newtonsoft.Json;
24 office 3 using Servers;
1 office 4  
5 namespace Winify.Gotify
6 {
7 public class GotifyNotification
8 {
9 #region Public Enums, Properties and Fields
10  
11 [JsonProperty(PropertyName = "id")]
12 public int Id { get; set; }
13  
14 [JsonProperty(PropertyName = "appid")]
15 public int AppId { get; set; }
16  
17 [JsonProperty(PropertyName = "message")]
18 public string Message { get; set; }
19  
20 [JsonProperty(PropertyName = "title")]
21 public string Title { get; set; }
22  
23 [JsonProperty(PropertyName = "priority")]
24 public int Priority { get; set; }
25  
26 [JsonProperty(PropertyName = "date")]
27 public DateTime Date { get; set; }
28  
24 office 29 public Server Server { get; set; }
30  
1 office 31 #endregion
32 }
33 }