mirror of
https://github.com/yawaflua/Discord.Net.git
synced 2025-12-09 03:49:36 +02:00
12 lines
339 B
C#
12 lines
339 B
C#
using System.Text.Json.Serialization;
|
|
using yawaflua.Discord.Net.Interfaces.Models;
|
|
|
|
namespace yawaflua.Discord.Net.Entities;
|
|
|
|
internal class AvatarDecoration : IAvatarDecoration
|
|
{
|
|
[JsonPropertyName("asset")]
|
|
public string AssetHash { get; set; }
|
|
[JsonPropertyName("sku_id")]
|
|
public string AssetArticular { get; set; }
|
|
} |