Winify – Blame information for rev 83

Subversion Repositories:
Rev:
Rev Author Line No. Line
67 office 1 using Newtonsoft.Json;
83 office 2 using Winify.Properties;
66 office 3  
4 namespace Winify.Gotify
5 {
6 public class GotifyMessageExtrasClientDisplay
7 {
83 office 8 private string _contentType = "text/plain";
9  
66 office 10 [JsonProperty(PropertyName = "contentType")]
83 office 11 public string ContentType
12 {
13 get => _contentType;
14 set => _contentType = value;
15 }
16  
17 [UsedImplicitly]
18 public GotifyMessageExtrasClientDisplay()
19 {
20  
21 }
66 office 22 }
23 }