* Add missing application properties Add IsBotPublic, BotRequiresCodeGrant, and Team properties to IApplication * To immutable list * Change list to array
18 lines
441 B
C#
18 lines
441 B
C#
#pragma warning disable CS1591
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Discord.API
|
|
{
|
|
internal class Team
|
|
{
|
|
[JsonProperty("icon")]
|
|
public Optional<string> Icon { get; set; }
|
|
[JsonProperty("id")]
|
|
public ulong Id { get; set; }
|
|
[JsonProperty("members")]
|
|
public TeamMember[] TeamMembers { get; set; }
|
|
[JsonProperty("owner_user_id")]
|
|
public ulong OwnerUserId { get; set; }
|
|
}
|
|
}
|