Response.cs 299 B

12345678910111213
  1. using Domain.Entities.Paper.ValueObject;
  2. namespace Application.Features.Api.Paper.PlaceOrder;
  3. public sealed record Response(
  4. int OrderID,
  5. PaperOrderSide Side,
  6. PaperFillRule FillRule,
  7. DateOnly TargetDate,
  8. DateTime CancelableUntil,
  9. int Quantity,
  10. decimal ReservedAmount
  11. );