mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 08:04:01 +00:00
19 lines
472 B
C#
19 lines
472 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace MikuSB.Data.Excel;
|
|
|
|
[ResourceEntity("dailybuff.json")]
|
|
public class Rogue3DDailyBuffExcel : ExcelResource
|
|
{
|
|
[JsonProperty("ID")] public uint Id { get; set; }
|
|
[JsonProperty("GroupID")] public uint GroupId { get; set; }
|
|
[JsonProperty("ScoreBuffID")] public uint ScoreBuffId { get; set; }
|
|
|
|
public override uint GetId() => Id;
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.Rogue3DDailyBuffData[Id] = this;
|
|
}
|
|
}
|