using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models { public class AccessConfig { /// /// 校本研修允许提交的文件类型 ["pdf"] /// public List homeworkType { get; set; } = new List(); /// /// 认证材料允许提交的文件类型 ["pdf","mp4"] /// //public List submitType { get; set; } = new List(); /// /// 单点登录跳转 scpjx /// public string path { get; set; } /// /// 研修平台省级 scsyxpt /// public string config { get; set; } } }