Winify – Diff between revs 66 and 67

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 66 Rev 67
1 using System; -  
2 using System.Collections.Generic; -  
3 using System.Linq; -  
4 using System.Text; -  
5 using System.Threading.Tasks; -  
6 using Newtonsoft.Json; 1 using Newtonsoft.Json;
7   2  
8 namespace Winify.Gotify 3 namespace Winify.Gotify
9 { 4 {
10 public class GotifyMessageExtrasClientDisplay 5 public class GotifyMessageExtrasClientDisplay
11 { 6 {
12 [JsonProperty(PropertyName = "contentType")] 7 [JsonProperty(PropertyName = "contentType")]
13 public string ContentType { get; set; } 8 public string ContentType { get; set; }
14 } 9 }
15 } 10 }
16   11