25 lines
695 B
C#
25 lines
695 B
C#
#pragma warning disable CS1591
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
|
|
namespace Discord.API
|
|
{
|
|
internal class InviteMetadata : Invite
|
|
{
|
|
[JsonProperty("inviter")]
|
|
public User Inviter { get; set; }
|
|
[JsonProperty("uses")]
|
|
public int Uses { get; set; }
|
|
[JsonProperty("max_uses")]
|
|
public int MaxUses { get; set; }
|
|
[JsonProperty("max_age")]
|
|
public int MaxAge { get; set; }
|
|
[JsonProperty("temporary")]
|
|
public bool Temporary { get; set; }
|
|
[JsonProperty("created_at")]
|
|
public DateTimeOffset CreatedAt { get; set; }
|
|
[JsonProperty("revoked")]
|
|
public bool Revoked { get; set; }
|
|
}
|
|
}
|