Winify – Blame information for rev 39

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  
39 office 9 [JsonProperty(PropertyName = "id")]
10 public int Id { get; set; }
1 office 11  
39 office 12 [JsonProperty(PropertyName = "token")]
13 public string Token { get; set; }
1 office 14  
39 office 15 [JsonProperty(PropertyName = "name")]
16 public string Name { get; set; }
1 office 17  
18 [JsonProperty(PropertyName = "description")]
19 public string Description { get; set; }
20  
21 [JsonProperty(PropertyName = "internal")]
22 public bool Internal { get; set; }
23  
39 office 24 [JsonProperty(PropertyName = "image")]
25 public string Image { get; set; }
1 office 26  
27 #endregion
28 }
29 }