#pragma warning disable CS1591 using Newtonsoft.Json; using System; namespace Discord.API { internal class GuildMember { [JsonProperty("user")] public User User { get; set; } [JsonProperty("nick")] public Optional Nick { get; set; } [JsonProperty("roles")] public Optional Roles { get; set; } [JsonProperty("joined_at")] public Optional JoinedAt { get; set; } [JsonProperty("deaf")] public Optional Deaf { get; set; } [JsonProperty("mute")] public Optional Mute { get; set; } [JsonProperty("premium_since")] public Optional PremiumSince { get; set; } } }