Files
DanhengServer-OpenSource/Common/Data/Custom/BaseRogueBuffGroupExcel.cs
2025-04-13 22:10:38 +08:00

15 lines
365 B
C#

using Newtonsoft.Json;
namespace EggLink.DanhengServer.Data.Custom;
public class BaseRogueBuffGroupExcel : ExcelResource
{
public int GroupId { get; set; }
[JsonIgnore] public List<BaseRogueBuffExcel> BuffList { get; set; } = [];
[JsonIgnore] public bool IsLoaded { get; set; }
public override int GetId()
{
return GroupId;
}
}