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.
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; }
|
|
}
|
|
}
|