22 lines
501 B
C#
22 lines
501 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Maki.Structures.Guilds
|
|
{
|
|
/// <summary>
|
|
/// Discord API Guild Members Chunk Response structure
|
|
/// </summary>
|
|
internal struct GuildMembersChunk
|
|
{
|
|
/// <summary>
|
|
/// the id of the guild
|
|
/// </summary>
|
|
[JsonProperty("guild_id")]
|
|
public ulong Guild;
|
|
|
|
/// <summary>
|
|
/// set of guild members
|
|
/// </summary>
|
|
[JsonProperty("members")]
|
|
public GuildMember[] Members;
|
|
}
|
|
}
|