2022-10-27 00:42:11 +08:00
|
|
|
|
using SharedProject.Enums;
|
|
|
|
|
|
|
|
|
|
namespace GameDatabase.Entities
|
2022-08-25 15:36:23 +08:00
|
|
|
|
{
|
|
|
|
|
public partial class UserDatum
|
|
|
|
|
{
|
|
|
|
|
public uint Baid { get; set; }
|
|
|
|
|
public string MyDonName { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
public uint TitlePlateId { get; set; }
|
2022-09-14 20:14:21 +08:00
|
|
|
|
public string FavoriteSongsArray { get; set; } = "[]";
|
|
|
|
|
public string ToneFlgArray { get; set; } = "[]";
|
|
|
|
|
public string TitleFlgArray { get; set; } = "[]";
|
2022-09-16 21:29:31 +09:00
|
|
|
|
public string CostumeFlgArray { get; set; } = "[[],[],[],[],[]]";
|
|
|
|
|
public string GenericInfoFlgArray { get; set; } = "[]";
|
2022-09-05 21:28:15 +08:00
|
|
|
|
public short OptionSetting { get; set; }
|
|
|
|
|
public int NotesPosition { get; set; }
|
2022-08-25 15:36:23 +08:00
|
|
|
|
public bool IsVoiceOn { get; set; }
|
|
|
|
|
public bool IsSkipOn { get; set; }
|
2022-09-05 21:28:15 +08:00
|
|
|
|
public uint SelectedToneId { get; set; }
|
2022-08-25 15:36:23 +08:00
|
|
|
|
public DateTime LastPlayDatetime { get; set; }
|
2022-09-05 21:28:15 +08:00
|
|
|
|
public uint LastPlayMode { get; set; }
|
2022-08-25 15:36:23 +08:00
|
|
|
|
public uint ColorBody { get; set; }
|
|
|
|
|
public uint ColorFace { get; set; }
|
|
|
|
|
public uint ColorLimb { get; set; }
|
2022-09-14 20:14:21 +08:00
|
|
|
|
public string CostumeData { get; set; } = "[[],[],[],[],[]]";
|
2022-08-25 15:36:23 +08:00
|
|
|
|
public bool DisplayDan { get; set; }
|
|
|
|
|
public bool DisplayAchievement { get; set; }
|
|
|
|
|
public Difficulty AchievementDisplayDifficulty { get; set; }
|
|
|
|
|
|
2022-09-19 10:32:52 +08:00
|
|
|
|
public int AiWinCount { get; set; }
|
2022-08-25 15:36:23 +08:00
|
|
|
|
public virtual Card? Ba { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|