9 lines
264 B
C#
9 lines
264 B
C#
|
|
namespace BackOffice.BFF.Application.RoleCQ.Commands.CreateNewRole;
|
||
|
|
public record CreateNewRoleCommand : IRequest<CreateNewRoleResponseDto>
|
||
|
|
{
|
||
|
|
//نام لاتین
|
||
|
|
public string Name { get; init; }
|
||
|
|
//عنوان
|
||
|
|
public string Title { get; init; }
|
||
|
|
|
||
|
|
}
|