using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.FormScheme.Response { public class FormInfoModel { /// /// 表单页签集合 /// public List TabList { get; set; } /// /// 历史记录存储位置 0 无 1 公共 2 私有 /// public string HistoryType { get; set; } } }