namespace FrontOffice.BFF.Application.UserRoleCQ.Commands.UpdateUserRole; public record UpdateUserRoleCommand : IRequest { //شناسه public long Id { get; init; } //شناسه نقش public long RoleId { get; init; } //شناسه کاربر public long UserId { get; init; } }