1
0
mirror of synced 2024-12-02 18:17:20 +01:00
TaikoLocalServer/TaikoWebUI/Settings/WebUiSettings.cs
2024-06-05 22:29:26 -04:00

13 lines
495 B
C#

namespace TaikoWebUI.Settings;
public class WebUiSettings
{
public string Title { get; set; } = "TaikoWebUI";
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>();
}