Winify – Rev 67

Subversion Repositories:
Rev:
using Newtonsoft.Json;

namespace Winify.Gotify
{
    public class GotifyPaging
    {
        [JsonProperty(PropertyName = "size")] public int Size { get; set; }

        [JsonProperty(PropertyName = "since")] public int Since { get; set; }

        [JsonProperty(PropertyName = "limit")] public int Limit { get; set; }
    }
}