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
|
|
|
|
}
|