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