mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 07:44:00 +00:00
21 lines
665 B
C#
21 lines
665 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace MikuSB.Data.Excel;
|
|
|
|
[ResourceEntity("dlc/vircapture/captureregion.json")]
|
|
public class VirCaptureCaptureRegionExcel : ExcelResource
|
|
{
|
|
[JsonProperty("Id")] public uint Id { get; set; }
|
|
[JsonProperty("StartTime")] public string StartTime { get; set; } = "";
|
|
[JsonProperty("EndTime")] public string EndTime { get; set; } = "";
|
|
[JsonProperty("MapId")] public uint MapId { get; set; }
|
|
[JsonProperty("LevelRegionName")] public string LevelRegionName { get; set; } = "";
|
|
|
|
public override uint GetId() => Id;
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.VirCaptureCaptureRegionData[Id] = this;
|
|
}
|
|
}
|