You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
583 B

#pragma warning disable CS1591
using Newtonsoft.Json;
namespace Discord.API
{
internal class Invite
{
[JsonProperty("code")]
public string Code { get; set; }
[JsonProperty("guild")]
public Optional<InviteGuild> Guild { get; set; }
[JsonProperty("channel")]
public InviteChannel Channel { get; set; }
[JsonProperty("approximate_presence_count")]
public Optional<int?> PresenceCount { get; set; }
[JsonProperty("approximate_member_count")]
public Optional<int?> MemberCount { get; set; }
}
}