namespace YBEE.EQM.Application { /// /// 角色组输出参数 /// public class SysRoleGroupOutput { /// /// ID /// [Required] public int Id { get; set; } /// /// 角色组名称 /// [Required] public string Name { get; set; } /// /// 备注 /// public string Remark { get; set; } } }