平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SystemSettingsOptions.cs 338 B

3 months ago
123456789101112131415161718192021222324
  1. 
  2. //
  3. using MoYu.ConfigurableOptions;
  4. namespace SafeCampus.System;
  5. /// <summary>
  6. /// 系统配置
  7. /// </summary>
  8. public class SystemSettingsOptions : BaseOptions, IConfigurableOptions
  9. {
  10. /// <summary>
  11. /// 超级管理员可以看到全部数据
  12. /// </summary>
  13. public bool SuperAdminViewAllData { get; set; }
  14. }