AccessConfig.cs 770 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models
  5. {
  6. public class AccessConfig
  7. {
  8. /// <summary>
  9. /// 校本研修允许提交的文件类型 ["pdf"]
  10. /// </summary>
  11. public List<string> homeworkType { get; set; } = new List<string>();
  12. /// <summary>
  13. /// 认证材料允许提交的文件类型 ["pdf","mp4"]
  14. /// </summary>
  15. //public List<string> submitType { get; set; } = new List<string>();
  16. /// <summary>
  17. /// 单点登录跳转 scpjx
  18. /// </summary>
  19. public string path { get; set; }
  20. /// <summary>
  21. /// 研修平台省级 scsyxpt
  22. /// </summary>
  23. public string config { get; set; }
  24. }
  25. }