1
0
mirror of synced 2024-12-11 06:16:01 +01:00
TaikoLocalServer/TaikoWebUI/Settings/WebUiSettings.cs
asesidaa ccd3b22b41 Add support for zh-hant
Refactor to make language specifiable in appsettings
2024-01-24 11:12:15 +08:00

12 lines
526 B
C#

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; }
public Language[] SupportedLanguages { get; set; } = Array.Empty<Language>();
}