平安校园
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.
 
 
 
 
 
 

28 lines
346 B

  1. //
  2. namespace SafeCampus.Core;
  3. /// <summary>
  4. /// 默认业务配置
  5. /// </summary>
  6. public class BaseOptions
  7. {
  8. /// <summary>
  9. /// 初始化表
  10. /// </summary>
  11. public bool InitTable { get; set; } = false;
  12. /// <summary>
  13. /// 初始化数据
  14. /// </summary>
  15. public bool InitSeedData { get; set; } = false;
  16. }