13 lines
483 B
C#
13 lines
483 B
C#
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; }
|
|
public int BoundAccessCodeUpperLimit { get; set; }
|
|
public bool RegisterWithLastPlayTime { get; set; }
|
|
public bool AllowUserDelete { get; set; }
|
|
public bool AllowFreeProfileEditing { get; set; }
|
|
} |