Files
DanhengServer-OpenSource/Common/Database/Player/PlayerUnlockData.cs
Somebody 87d228eb79 Feature:Asynchronous Operation & Formatting Code
- Now the async operation is enabled!
- Code formatted by Resharper plugin <3
2024-07-22 17:12:03 +08:00

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; } = [];
}