2025-12-04 03:43:28 +03:30
|
|
|
using MediatR;
|
2025-12-06 01:39:22 +03:30
|
|
|
using BffProto = BackOffice.BFF.UserOrder.Protobuf.Protos.UserOrder;
|
2025-12-04 03:43:28 +03:30
|
|
|
|
|
|
|
|
namespace BackOffice.BFF.Application.UserOrderCQ.Commands.UpdateOrderStatus;
|
|
|
|
|
|
2025-12-06 01:39:22 +03:30
|
|
|
public record UpdateOrderStatusCommand : IRequest<BffProto.UpdateOrderStatusResponse>
|
2025-12-04 03:43:28 +03:30
|
|
|
{
|
|
|
|
|
public long OrderId { get; init; }
|
|
|
|
|
public int NewStatus { get; init; }
|
|
|
|
|
}
|