1
0
mirror of synced 2024-11-14 18:38:06 +01:00
TaikoLocalServer/SharedProject/Models/UserSetting.cs
2022-09-06 22:38:42 -04:00

28 lines
660 B
C#

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; }
public string MyDonName { get; set; } = String.Empty;
public string Title { get; set; } = String.Empty;
public uint TitlePlateId { get; set; }
}