15 lines
440 B
C#
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; }
|
|
}
|