您最多选择25个标签
标签必须以中文、字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
- #pragma warning disable CS1591
- using Newtonsoft.Json;
-
- namespace Discord.API.Rpc
- {
- internal class GuildStatusEvent
- {
- [JsonProperty("guild")]
- public Guild Guild { get; set; }
- [JsonProperty("online")]
- public int Online { get; set; }
- }
- }
|