This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
namespace OpenAuth.App.Request
{
/// <summary>
/// 比如给用户分配资源,那么firstId就是用户ID,secIds就是资源ID列表
/// </summary>
public class AssignReq
/// 分配的关键字,比如:UserRole
public string type { get; set; }
/// 比如给用户分配角色,那么firstId就是用户ID,secIds就是角色ID列表
public string firstId { get; set; }
public string[] secIds { get; set; }
}