2022-09-05 23:01:54 +08: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-05 18:57:45 -04:00
|
|
|
|
|
|
|
|
|
public string MyDonName { get; set; } = String.Empty;
|
2022-09-05 21:52:13 -04:00
|
|
|
|
|
|
|
|
|
public string Title { get; set; } = String.Empty;
|
2022-09-06 22:38:42 -04:00
|
|
|
|
|
|
|
|
|
public uint TitlePlateId { get; set; }
|
2022-09-05 23:01:54 +08:00
|
|
|
|
}
|