mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
15 lines
365 B
C#
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;
|
|
}
|
|
} |