2023-09-09 14:58:20 +02:00
|
|
|
|
using SharedProject.Enums;
|
|
|
|
|
|
|
|
|
|
namespace SharedProject.Models;
|
|
|
|
|
|
|
|
|
|
public class UserSetting
|
|
|
|
|
{
|
|
|
|
|
public uint ToneId { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsDisplayAchievement { get; set; }
|
2023-09-18 11:54:02 +02:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public bool IsDisplayDanOnNamePlate { get; set; }
|
2023-09-18 11:54:02 +02:00
|
|
|
|
|
|
|
|
|
public uint DifficultySettingCourse { get; set; }
|
|
|
|
|
|
|
|
|
|
public uint DifficultySettingStar { get; set; }
|
|
|
|
|
|
|
|
|
|
public uint DifficultySettingSort { get; set; }
|
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public bool IsVoiceOn { get; set; }
|
2023-09-18 11:54:02 +02:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public bool IsSkipOn { get; set; }
|
|
|
|
|
|
|
|
|
|
public Difficulty AchievementDisplayDifficulty { get; set; }
|
|
|
|
|
|
|
|
|
|
public PlaySetting PlaySetting { get; set; } = new();
|
2023-09-18 11:54:02 +02:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public int NotesPosition { get; set; }
|
|
|
|
|
|
|
|
|
|
public string MyDonName { get; set; } = string.Empty;
|
|
|
|
|
|
2023-09-18 12:26:08 +02:00
|
|
|
|
public uint MyDonNameLanguage { get; set; }
|
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public uint TitlePlateId { get; set; }
|
|
|
|
|
|
|
|
|
|
public uint Kigurumi { get; set; }
|
2023-09-18 11:54:02 +02:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public uint Head { get; set; }
|
2023-09-18 11:54:02 +02:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public uint Body { get; set; }
|
2023-09-18 11:54:02 +02:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public uint Face { get; set; }
|
2023-09-18 11:54:02 +02:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public uint Puchi { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<uint> UnlockedKigurumi { get; set; } = new();
|
2023-09-18 11:54:02 +02:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public List<uint> UnlockedHead { get; set; } = new();
|
2023-09-18 11:54:02 +02:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public List<uint> UnlockedBody { get; set; } = new();
|
2023-09-18 11:54:02 +02:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public List<uint> UnlockedFace { get; set; } = new();
|
2023-09-18 11:54:02 +02:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public List<uint> UnlockedPuchi { get; set; } = new();
|
|
|
|
|
|
|
|
|
|
public uint FaceColor { get; set; }
|
2023-09-18 11:54:02 +02:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public uint BodyColor { get; set; }
|
2023-09-18 11:54:02 +02:00
|
|
|
|
|
2023-09-09 14:58:20 +02:00
|
|
|
|
public uint LimbColor { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|