using Newtonsoft.Json;
namespace Maki.Structures.Guilds
{
///
/// Discord API Gulld Widget structure
///
internal struct GuildWidget
{
///
/// if the embed is enabled
///
[JsonProperty("enabled")]
public bool IsEnabled;
///
/// the embed channel id
///
[JsonProperty("channel_id")]
public ulong ChannelId;
}
}