SettingNames.cs 572 B

12345678910111213141516171819202122232425262728
  1. using VberZero.Settings;
  2. namespace VberAdmin.DomainService.Settings;
  3. public class SettingNames : VzSettingNames
  4. {
  5. public const string UiTheme = "App.UiTheme";
  6. internal static List<string> AppSettings = new()
  7. {
  8. UploadFileExt,
  9. UploadFileMaxSize,
  10. MultiLanguages
  11. };
  12. internal static List<string> TenantSettings = new()
  13. {
  14. RecordIdPrefix,
  15. AdminSystemName,
  16. UserDefaultPassword,
  17. };
  18. internal static List<string> UserSettings = new()
  19. {
  20. UiTheme,
  21. ReceiveNotifications,
  22. };
  23. }