mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
16 lines
448 B
C#
16 lines
448 B
C#
using SqlSugar;
|
|
|
|
namespace EggLink.DanhengServer.Database.Player
|
|
{
|
|
[SugarTable("UnlockData")]
|
|
public class PlayerUnlockData : BaseDatabaseData
|
|
{
|
|
[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; } = [];
|
|
}
|
|
}
|