blob: 200dccea662efe4d5c30f2466b10417114f21bb2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
using System.Text.Json.Serialization;
namespace Spacebar.Models.Gateway;
public class LazyRequest
{
[JsonPropertyName("guild_id")]
public string GuildId { get; set; }
[JsonPropertyName("channels")]
public Dictionary<string, List<List<int>>> Channels { get; set; }
[JsonPropertyName("members")]
public bool Members { get; set; }
[JsonPropertyName("threads")]
public bool Threads { get; set; }
[JsonPropertyName("activities")]
public bool Activities { get; set; }
[JsonPropertyName("typing")]
public bool Typing { get; set; }
}
|