using Newtonsoft.Json; namespace Maki.Structures.Guilds { /// /// Discord API Guild Integration Account structure /// internal struct GuildIntegrationAccount { /// /// id of the account /// [JsonProperty("id")] public string Id; /// /// name of the account /// [JsonProperty("name")] public string Name; } }