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

10 lines
359 B
C#
Raw Normal View History

2024-04-16 20:01:34 +03:30
namespace Netina.Domain.Dtos.RequestDtos;
2023-12-16 20:25:12 +03:30
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();
}