1
0
mirror of synced 2025-01-21 08:43:43 +01:00

28 lines
660 B
C#
Raw Normal View History

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;
public string Title { get; set; } = String.Empty;
2022-09-06 22:38:42 -04:00
public uint TitlePlateId { get; set; }
}