22 lines
480 B
C#
22 lines
480 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Maki.Structures.Guilds
|
|
{
|
|
/// <summary>
|
|
/// Discord API Guild Integration Account structure
|
|
/// </summary>
|
|
internal struct GuildIntegrationAccount
|
|
{
|
|
/// <summary>
|
|
/// id of the account
|
|
/// </summary>
|
|
[JsonProperty("id")]
|
|
public string Id;
|
|
|
|
/// <summary>
|
|
/// name of the account
|
|
/// </summary>
|
|
[JsonProperty("name")]
|
|
public string Name;
|
|
}
|
|
}
|