using System.ComponentModel.DataAnnotations; namespace Fengling.Console.Models.Dtos; public class CreateRoleDto { [Required] public string Name { get; set; } = string.Empty; [Required] public string DisplayName { get; set; } = string.Empty; public string? Description { get; set; } public long? TenantId { get; set; } public List Permissions { get; set; } = new(); }