namespace Nuuru.Server.DTOs.Role
{
///
/// Role information with permissions
///
public class RoleDto
{
public Guid Id { get; set; }
public string Name { get; set; } = string.Empty;
public string? Color { get; set; }
public IEnumerable Permissions { get; set; } = new List();
public int UserCount { get; set; }
}
}