mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-12 13:04:33 +01:00
20 lines
480 B
C#
20 lines
480 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace KianaBH.Data.Excel;
|
|
|
|
[ResourceEntity("DressData.json")]
|
|
public class DressDataExcel : ExcelResource
|
|
{
|
|
[JsonPropertyName("dressID")] public uint DressID { get; set; }
|
|
[JsonPropertyName("avatarIDList")] public List<uint> AvatarIDList { get; set; } = [];
|
|
|
|
public override int GetId()
|
|
{
|
|
return (int)DressID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.DressData.Add(GetId(), this);
|
|
}
|
|
} |