fengling-console/Models/Dtos/RoleDto.cs
2026-02-05 14:14:19 +08:00

15 lines
440 B
C#

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<string>? Permissions { get; set; }
public int UserCount { get; set; }
public DateTime CreatedAt { get; set; }
}