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