11 lines
332 B
C#
11 lines
332 B
C#
using MediatR;
|
|
using BffProto = BackOffice.BFF.UserOrder.Protobuf.Protos.UserOrder;
|
|
|
|
namespace BackOffice.BFF.Application.UserOrderCQ.Commands.UpdateOrderStatus;
|
|
|
|
public record UpdateOrderStatusCommand : IRequest<BffProto.UpdateOrderStatusResponse>
|
|
{
|
|
public long OrderId { get; init; }
|
|
public int NewStatus { get; init; }
|
|
}
|