2022-09-05 17:01:54 +02:00
|
|
|
|
using SharedProject.Enums;
|
|
|
|
|
|
|
|
|
|
namespace SharedProject.Models;
|
|
|
|
|
|
|
|
|
|
public class UserSetting
|
|
|
|
|
{
|
|
|
|
|
public uint ToneId { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsDisplayAchievement { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsDisplayDanOnNamePlate { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsVoiceOn { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsSkipOn { get; set; }
|
|
|
|
|
|
|
|
|
|
public Difficulty AchievementDisplayDifficulty { get; set; }
|
|
|
|
|
|
|
|
|
|
public PlaySetting PlaySetting { get; set; } = new();
|
|
|
|
|
|
|
|
|
|
public int NotesPosition { get; set; }
|
2022-09-06 00:57:45 +02:00
|
|
|
|
|
|
|
|
|
public string MyDonName { get; set; } = String.Empty;
|
2022-09-06 03:52:13 +02:00
|
|
|
|
|
|
|
|
|
public string Title { get; set; } = String.Empty;
|
2022-09-07 04:38:42 +02:00
|
|
|
|
|
|
|
|
|
public uint TitlePlateId { get; set; }
|
2022-09-05 17:01:54 +02:00
|
|
|
|
}
|