25 lines
582 B
C#
25 lines
582 B
C#
|
|
using OpenAuth.Repository.Domain;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace OpenAuth.App.FormScheme.Request
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 自定义表单模板保存数据
|
|||
|
|
/// </summary>
|
|||
|
|
public class FormSchemeReq
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 模板基础信息
|
|||
|
|
/// </summary>
|
|||
|
|
public FormSchemeInfo Info { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 模板信息
|
|||
|
|
/// </summary>
|
|||
|
|
public Repository.Domain.FormScheme Scheme { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|