Api/Brizco.Domain/Dtos/RequestDtos/RoleActionRequestDto.cs

11 lines
399 B
C#

namespace Brizco.Domain.Dtos.RequestDtos;
public class RoleActionRequestDto
{
public Guid RoleId { get; set; }
public Guid ComplexId { get; set; }
public string Description { get; set; } = string.Empty;
public string EnglishName { get; set; } = string.Empty;
public string PersianName { get; set; } = string.Empty;
public List<string> Permissions { get; set; } = new();
}