23 lines
471 B
C#
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; }
|
|||
|
|
}
|
|||
|
|
}
|