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.

23 lines
471 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.Request
{
public class WFDelegateDto
{
/// <summary>
/// 委托信息
/// </summary>
public WFDelegateRule entity { get; set; }
/// <summary>
/// 模板信息
/// </summary>
public List<string> list { get; set; }
}
}