14 lines
299 B
C#
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();
|
|
}
|