1
0
mirror of synced 2025-02-06 06:34:29 +01:00

35 lines
1.4 KiB
C#
Raw Normal View History

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; }
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; } = "[]";
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; }
public uint SelectedToneId { get; set; }
2022-08-25 15:36:23 +08:00
public DateTime LastPlayDatetime { get; set; }
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; }
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; }
public int AiWinCount { get; set; }
2022-08-25 15:36:23 +08:00
public virtual Card? Ba { get; set; }
}
}