fengling-console/Models/Dtos/RoleDto.cs
2026-02-21 15:05:37 +08:00

15 lines
446 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 DateTimeOffset CreatedAt { get; set; }
}