namespace Fengling.Console.Models.Dtos; public class RoleDto { public long Id { get; set; } public string? Name { get; set; } public string? DisplayName { get; set; } public string? Description { get; set; } public long? TenantId { get; set; } public bool IsSystem { get; set; } public List? Permissions { get; set; } public int UserCount { get; set; } public DateTimeOffset CreatedAt { get; set; } }