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 Permissions { get; set; } = new(); }