mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
21 lines
461 B
C#
21 lines
461 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("MessageContactsConfig.json")]
|
|
public class MessageContactsConfigExcel : ExcelResource
|
|
{
|
|
public int ID { get; set; }
|
|
|
|
[JsonIgnore] public List<MessageGroupConfigExcel> Groups { get; set; } = [];
|
|
|
|
public override int GetId()
|
|
{
|
|
return ID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.MessageContactsConfigData.Add(ID, this);
|
|
}
|
|
} |