Winify – Blame information for rev 59

Subversion Repositories:
Rev:
Rev Author Line No. Line
59 office 1 using Newtonsoft.Json;
2 using Servers;
3 using System;
4 using System.Collections.Generic;
5 using System.Linq;
6 using System.Text;
7 using System.Threading.Tasks;
8  
9 namespace Winify.Gotify
10 {
11 public class GotifyPaging
12 {
13 [JsonProperty(PropertyName = "size")] public int Size { get; set; }
14  
15 [JsonProperty(PropertyName = "since")] public int Since { get; set; }
16  
17 [JsonProperty(PropertyName = "limit")] public int Limit { get; set; }
18 }
19 }