1
0
mirror of synced 2025-01-29 03:25:47 +01:00

12 lines
441 B
C#
Raw Normal View History

2023-10-16 10:38:27 +01:00
namespace TaikoWebUI.Settings;
public class WebUiSettings
{
2024-03-08 18:42:56 -05: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 10:38:27 +01:00
}