blob: ae516f15d1e7ae0a177180189eb52ef47c9b001e (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
namespace Spacebar.Models.AdminApi;
public class GuildModel {
public string Id { get; set; } = null!;
public string? AfkChannelId { get; set; }
public int? AfkTimeout { get; set; }
public string? Banner { get; set; }
public int? DefaultMessageNotifications { get; set; }
public string? Description { get; set; }
public string? DiscoverySplash { get; set; }
public int? ExplicitContentFilter { get; set; }
public string Features { get; set; } = null!;
public string? PrimaryCategoryId { get; set; }
public string? Icon { get; set; }
public bool Large { get; set; }
public int? MaxMembers { get; set; }
public int? MaxPresences { get; set; }
public int? MaxVideoChannelUsers { get; set; }
public int? MemberCount { get; set; }
public int? PresenceCount { get; set; }
public string? TemplateId { get; set; }
public int? MfaLevel { get; set; }
public string Name { get; set; } = null!;
public string? OwnerId { get; set; }
public string? PreferredLocale { get; set; }
public int? PremiumSubscriptionCount { get; set; }
public int PremiumTier { get; set; }
public string? PublicUpdatesChannelId { get; set; }
public string? RulesChannelId { get; set; }
public string? Region { get; set; }
public string? Splash { get; set; }
public string? SystemChannelId { get; set; }
public int? SystemChannelFlags { get; set; }
public bool Unavailable { get; set; }
public int? VerificationLevel { get; set; }
public string WelcomeScreen { get; set; } = null!;
public string? WidgetChannelId { get; set; }
public bool WidgetEnabled { get; set; }
public int? NsfwLevel { get; set; }
public bool Nsfw { get; set; }
public string? Parent { get; set; }
public bool? PremiumProgressBarEnabled { get; set; }
public string ChannelOrdering { get; set; } = null!;
public int ChannelCount { get; set; }
public int RoleCount { get; set; }
public int EmojiCount { get; set; }
public int StickerCount { get; set; }
public int InviteCount { get; set; }
public int MessageCount { get; set; }
public int BanCount { get; set; }
public int VoiceStateCount { get; set; }
}
|