Api-PWA/DocuMed.Domain/Dtos/RequestDtos/RoleActionRequestDto.cs

11 lines
403 B
C#

namespace DocuMed.Domain.Dtos.RequestDtos;
public class RoleActionRequestDto
{
public Guid RoleId { get; set; }
public Guid UniversityId { 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();
}