22 lines
434 B
C#
22 lines
434 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace OpenAuth.App.Request
|
|||
|
|
{
|
|||
|
|
public class AddOrUpdateDroneFlowBindRoleReq
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 流程id
|
|||
|
|
/// </summary>
|
|||
|
|
public string id { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 角色id
|
|||
|
|
/// </summary>
|
|||
|
|
public string[] roleids { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|