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

14 lines
299 B
C#

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