Archived
1
0
Fork 0
This repository has been archived on 2024-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
maki/Maki/Structures/Guilds/GuildMembersChunk.cs
2017-05-14 14:02:51 +02:00

23 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;
}
}