feature: Add missing application properties (including Teams) (#1604)
* Add missing application properties Add IsBotPublic, BotRequiresCodeGrant, and Team properties to IApplication * To immutable list * Change list to array
This commit is contained in:
17
src/Discord.Net.Rest/API/Common/Team.cs
Normal file
17
src/Discord.Net.Rest/API/Common/Team.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
#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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user