1
0
mirror of synced 2025-01-22 11:53:40 +01:00

11 lines
359 B
C#
Raw Normal View History

2023-10-16 10:38:27 +01:00
namespace TaikoWebUI.Settings;
public class WebUiSettings
{
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; }
2023-10-16 10:38:27 +01:00
}