Winify – Blame information for rev 67

Subversion Repositories:
Rev:
Rev Author Line No. Line
59 office 1 using Newtonsoft.Json;
2  
3 namespace Winify.Gotify
4 {
5 public class GotifyPaging
6 {
7 [JsonProperty(PropertyName = "size")] public int Size { get; set; }
8  
9 [JsonProperty(PropertyName = "since")] public int Since { get; set; }
10  
11 [JsonProperty(PropertyName = "limit")] public int Limit { get; set; }
12 }
13 }