| 12345678910111213 |
- using Domain.Entities.Paper.ValueObject;
- namespace Application.Features.Api.Paper.PlaceOrder;
- public sealed record Response(
- int OrderID,
- PaperOrderSide Side,
- PaperFillRule FillRule,
- DateOnly TargetDate,
- DateTime CancelableUntil,
- int Quantity,
- decimal ReservedAmount
- );
|