Winify

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 58  →  ?path2? @ 59
/trunk/Winify/Gotify/GotifyPaging.cs
@@ -0,0 +1,19 @@
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; }
}
}