Winify – Diff between revs 67 and 83

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