2023-10-16 10:38:27 +01:00
|
|
|
|
namespace TaikoWebUI.Settings;
|
|
|
|
|
|
|
|
|
|
public class WebUiSettings
|
|
|
|
|
{
|
|
|
|
|
public bool LoginRequired { get; set; }
|
|
|
|
|
public bool OnlyAdmin { get; set; }
|
2023-11-12 17:56:57 +00:00
|
|
|
|
public int BoundAccessCodeUpperLimit { get; set; }
|
2023-11-12 23:12:54 +00:00
|
|
|
|
public bool RegisterWithLastPlayTime { get; set; }
|
|
|
|
|
public bool AllowUserDelete { get; set; }
|
|
|
|
|
public bool AllowFreeProfileEditing { get; set; }
|
2023-10-16 10:38:27 +01:00
|
|
|
|
}
|