mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
31 lines
736 B
C#
31 lines
736 B
C#
using EggLink.DanhengServer.Data.Config;
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EggLink.DanhengServer.Data.Excel
|
|
{
|
|
[ResourceEntity("PerformanceE.json")]
|
|
public class PerformanceEExcel : ExcelResource
|
|
{
|
|
public int PerformanceID { get; set; }
|
|
public string PerformancePath { get; set; } = "";
|
|
|
|
[JsonIgnore]
|
|
public LevelGraphConfigInfo? ActInfo { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return PerformanceID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.PerformanceEData.Add(PerformanceID, this);
|
|
}
|
|
}
|
|
}
|