11 lines
291 B
C#
11 lines
291 B
C#
namespace FrontOffice.BFF.Application.RoleCQ.Commands.UpdateRole;
|
|
public record UpdateRoleCommand : IRequest<Unit>
|
|
{
|
|
//شناسه
|
|
public long Id { get; init; }
|
|
//نام لاتین
|
|
public string Name { get; init; }
|
|
//عنوان
|
|
public string Title { get; init; }
|
|
|
|
} |