You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
497 B
C#
22 lines
497 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.FormScheme.Response
|
|
{
|
|
public class FormInfoModel
|
|
{
|
|
/// <summary>
|
|
/// 表单页签集合
|
|
/// </summary>
|
|
public List<FormTabModel> TabList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 历史记录存储位置 0 无 1 公共 2 私有
|
|
/// </summary>
|
|
public string HistoryType { get; set; }
|
|
}
|
|
}
|