11 lines
313 B
C#
11 lines
313 B
C#
|
|
namespace FrontOffice.BFF.Application.UserRoleCQ.Commands.UpdateUserRole;
|
||
|
|
public record UpdateUserRoleCommand : IRequest<Unit>
|
||
|
|
{
|
||
|
|
//شناسه
|
||
|
|
public long Id { get; init; }
|
||
|
|
//شناسه نقش
|
||
|
|
public long RoleId { get; init; }
|
||
|
|
//شناسه کاربر
|
||
|
|
public long UserId { get; init; }
|
||
|
|
|
||
|
|
}
|