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 /// <summary>
6 /// {
7 /// "paging":{
8 /// "size":2,
9 /// "since":0,
10 /// "limit":100
11 /// },
12 /// "messages":[
13 /// {
14 /// "id":26622,
15 /// "appid":1,
16 /// "message":"bbbb",
17 /// "title":"aaaa",
18 /// "priority":0,
19 /// "date":"2023-07-29T06:54:45.982069186Z"
20 /// },
21 /// {
22 /// "id":26621,
23 /// "appid":1,
24 /// "message":"bbbb",
25 /// "title":"aaaa",
26 /// "priority":0,
27 /// "date":"2023-07-29T06:48:29.397144801Z"
28 /// }
29 /// ]
30 /// }
31 /// </summary>
32 public class GotifyMessageQuery
33 {
34 #region Public Enums, Properties and Fields
35  
36 [JsonProperty(PropertyName = "paging")] public GotifyPaging Paging { get; set; }
37  
38 [JsonProperty(PropertyName = "messages")] public GotifyMessage[] Messages { get; set; }
39  
40 #endregion
41 }
42 }