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;
-
- namespace Discord.API
- {
- internal class StickerPack
- {
- [JsonProperty("id")]
- public ulong Id { get; set; }
- [JsonProperty("stickers")]
- public Sticker[] Stickers { get; set; }
- [JsonProperty("name")]
- public string Name { get; set; }
- [JsonProperty("sku_id")]
- public ulong SkuId { get; set; }
- [JsonProperty("cover_sticker_id")]
- public Optional<ulong> CoverStickerId { get; set; }
- [JsonProperty("description")]
- public string Description { get; set; }
- [JsonProperty("banner_asset_id")]
- public ulong BannerAssetId { get; set; }
- }
- }
|