mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
10 lines
289 B
C#
10 lines
289 B
C#
namespace EggLink.DanhengServer.Database.Player
|
|
{
|
|
public class PlayerUnlockData : BaseDatabaseData
|
|
{
|
|
public List<int> HeadIcons { get; set; } = [];
|
|
public List<int> ChatBubbles { get; set; } = [];
|
|
public List<int> PhoneThemes { get; set; } = [];
|
|
}
|
|
}
|