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

10 lines
363 B
C#

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