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

19 lines
409 B
C#

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<string> Permissions { get; set; } = new();
}