Winify – Blame information for rev 1

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