Winify – Blame information for rev 44

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using Newtonsoft.Json;
2  
3 namespace Winify.Gotify
4 {
5 public class GotifyApplication
6 {
7 #region Public Enums, Properties and Fields
8  
44 office 9 [JsonProperty(PropertyName = "id")] public int Id { get; set; }
1 office 10  
44 office 11 [JsonProperty(PropertyName = "token")] public string Token { get; set; }
1 office 12  
44 office 13 [JsonProperty(PropertyName = "name")] public string Name { get; set; }
1 office 14  
15 [JsonProperty(PropertyName = "description")]
16 public string Description { get; set; }
17  
18 [JsonProperty(PropertyName = "internal")]
19 public bool Internal { get; set; }
20  
44 office 21 [JsonProperty(PropertyName = "image")] public string Image { get; set; }
1 office 22  
23 #endregion
24 }
25 }