mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 18:43:56 +00:00
19 lines
508 B
C#
19 lines
508 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace MikuSB.Data.Excel;
|
|
|
|
[ResourceEntity("challenge/climbtower/climb_tower_time.json")]
|
|
public class ClimbTowerTimeExcel : ExcelResource
|
|
{
|
|
[JsonProperty("ID")] public uint ID { get; set; }
|
|
[JsonProperty("StartTime")] public string StartTime { get; set; } = "";
|
|
[JsonProperty("EndTime")] public string EndTime { get; set; } = "";
|
|
|
|
public override uint GetId() => ID;
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.ClimbTowerTimeData[ID] = this;
|
|
}
|
|
}
|