2023-10-16 11:38:27 +02:00
|
|
|
|
namespace TaikoWebUI.Settings;
|
|
|
|
|
|
|
|
|
|
public class WebUiSettings
|
|
|
|
|
{
|
|
|
|
|
public bool LoginRequired { get; set; }
|
|
|
|
|
public string AdminUsername { get; set; } = string.Empty;
|
|
|
|
|
public string AdminPassword { get; set; } = string.Empty;
|
|
|
|
|
public bool OnlyAdmin { get; set; }
|
2023-11-12 18:56:57 +01:00
|
|
|
|
public int BoundAccessCodeUpperLimit { get; set; }
|
2023-11-13 00:12:54 +01:00
|
|
|
|
public bool RegisterWithLastPlayTime { get; set; }
|
|
|
|
|
public bool AllowUserDelete { get; set; }
|
|
|
|
|
public bool AllowFreeProfileEditing { get; set; }
|
2023-10-16 11:38:27 +02:00
|
|
|
|
}
|