-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSESSIONS_REPLACE.cs
More file actions
31 lines (25 loc) · 834 Bytes
/
SESSIONS_REPLACE.cs
File metadata and controls
31 lines (25 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DiscordWSS {
// SESSIONS_REPLACE myDeserializedClass = JsonConvert.DeserializeObject<SESSIONS_REPLACE>(myJsonResponse);
public class ClientInfos {
public int version { get; set; }
public string os { get; set; }
public string client { get; set; }
}
public class Z {
public string status { get; set; }
public string session_id { get; set; }
public ClientInfos client_info { get; set; }
public List<object> activities { get; set; }
}
public class SESSIONS_REPLACE {
public string t { get; set; }
public int s { get; set; }
public int op { get; set; }
public List<Z> d { get; set; }
}
}