mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 17:23:58 +00:00
19 lines
422 B
C#
19 lines
422 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace MikuSB.Data.Excel;
|
|
|
|
[ResourceEntity("item/support/fixed.json")]
|
|
public class SupportFixedExcel : ExcelResource
|
|
{
|
|
[JsonProperty("ID")] public int Id { get; set; }
|
|
public int Num { get; set; }
|
|
public List<uint> Item { get; set; } = [];
|
|
|
|
public override uint GetId() => (uint)Id;
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.SupportFixedData[Id] = this;
|
|
}
|
|
}
|