1
0
mirror of synced 2024-12-05 03:17:58 +01:00
TaikoLocalServer/TaikoWebUI/Settings/WebUiSettings.cs

12 lines
441 B
C#
Raw Normal View History

2023-10-16 11:38:27 +02:00
namespace TaikoWebUI.Settings;
public class WebUiSettings
{
2024-03-09 00:42:56 +01:00
public bool LoginRequired { get; set; }
public bool OnlyAdmin { get; set; }
public int BoundAccessCodeUpperLimit { get; set; }
public bool RegisterWithLastPlayTime { get; set; }
public bool AllowUserDelete { get; set; }
public bool AllowFreeProfileEditing { get; set; }
public Language[] SupportedLanguages { get; set; } = Array.Empty<Language>();
2023-10-16 11:38:27 +02:00
}