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.
|
-
- //
-
-
-
-
-
-
-
-
- using MoYu.ConfigurableOptions;
-
- namespace SafeCampus.Web.Core;
-
- /// <summary>
- /// 系统配置选项
- /// </summary>
- public class WebSettingsOptions : IConfigurableOptions
- {
- /// <summary>
- /// 是否演示环境
- /// </summary>
- public bool EnvPoc { get; set; } = false;
-
- /// <summary>
- /// 是否清除Redis缓存
- /// </summary>
- public bool ClearRedis { get; set; } = false;
- }
|