Winify – Rev 59

Subversion Repositories:
Rev:
using Newtonsoft.Json;
using Servers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

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; }
    }
}