| 12345678910111213141516171819202122232425262728 |
- using VberZero.Settings;
- namespace VberAdmin.DomainService.Settings;
- public class SettingNames : VzSettingNames
- {
- public const string UiTheme = "App.UiTheme";
- internal static List<string> AppSettings = new()
- {
- UploadFileExt,
- UploadFileMaxSize,
- MultiLanguages
- };
- internal static List<string> TenantSettings = new()
- {
- RecordIdPrefix,
- AdminSystemName,
- UserDefaultPassword,
- };
- internal static List<string> UserSettings = new()
- {
- UiTheme,
- ReceiveNotifications,
- };
- }
|