mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
13 lines
401 B
C#
13 lines
401 B
C#
using SqlSugar;
|
|
|
|
namespace EggLink.DanhengServer.Database.Player;
|
|
|
|
[SugarTable("UnlockData")]
|
|
public class PlayerUnlockData : BaseDatabaseDataHelper
|
|
{
|
|
[SugarColumn(IsJson = true)] public List<int> HeadIcons { get; set; } = [];
|
|
|
|
[SugarColumn(IsJson = true)] public List<int> ChatBubbles { get; set; } = [];
|
|
|
|
[SugarColumn(IsJson = true)] public List<int> PhoneThemes { get; set; } = [];
|
|
} |