You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using Newtonsoft.Json;
- using System;
-
- namespace Discord.API
- {
- internal class InviteMetadata : Invite
- {
- [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; }
- }
- }
|