Response.cs 242 B

1234567891011
  1. namespace Application.Features.Api.Paper.PlaceOrder;
  2. public sealed record Response(
  3. int OrderID,
  4. string Side,
  5. string FillRule,
  6. DateOnly TargetDate,
  7. DateTime CancelableUntil,
  8. int Quantity,
  9. decimal ReservedAmount
  10. );