namespace FoodLabeling.Th.Application.Contracts.Dtos.MultiTenancy;
///
/// 租户内角色及已绑定菜单 Id
///
public class ThCompanyRoleItemDto
{
/// 角色 Id
public Guid Id { get; set; }
/// 角色名称
public string RoleName { get; set; } = string.Empty;
/// 角色编码
public string RoleCode { get; set; } = string.Empty;
/// 启用状态
public bool State { get; set; }
/// 已绑定菜单 Id 列表
public List MenuIds { get; set; } = new();
}