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