mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 06:23:58 +00:00
VirCapture can Enter
This commit is contained in:
18
Common/Data/Excel/VirCaptureTimeExcel.cs
Normal file
18
Common/Data/Excel/VirCaptureTimeExcel.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace MikuSB.Data.Excel;
|
||||
|
||||
[ResourceEntity("dlc/vircapture/timelist.json")]
|
||||
public class VirCaptureTimeExcel : 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.VirCaptureTimeData[Id] = this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user