VirCapture can Enter

This commit is contained in:
Kei-Luna
2026-05-24 08:14:19 +09:00
parent 6f51e335de
commit c3b675dc34
5 changed files with 222 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
using Newtonsoft.Json;
namespace MikuSB.Data.Excel;
[ResourceEntity("dlc/vircapture/trial_timelist.json")]
public class VirCaptureTrialTimeExcel : ExcelResource
{
[JsonProperty("Id")] public uint Id { get; set; }
[JsonProperty("StartTime")] public string StartTime { get; set; } = "";
[JsonProperty("EndTime")] public string EndTime { get; set; } = "";
[JsonProperty("AwardTime")] public string AwardTime { get; set; } = "";
public override uint GetId() => Id;
public override void Loaded()
{
GameData.VirCaptureTrialTimeData[Id] = this;
}
}