using Admin.NET.Core;
namespace Admin.NET.Application
{
///
/// 登录用户角色参数
///
public class RoleOutput
{
///
/// 角色类型-集团角色_0、加盟商角色_1、门店角色_2
///
public RoleTypeEnum RoleType { get; set; }
///
/// Id
///
public long Id { get; set; }
///
/// 编码
///
public string Code { get; set; }
///
/// 名称
///
public string Name { get; set; }
}
}