| 123456789101112131415161718192021222324 |
- using Domain.Entities.Store.ValueObject;
- namespace Application.Features.Api.Store.Orders.List;
- public sealed record Response(int Total, List<Response.Row> List)
- {
- public sealed record Row(
- int ID,
- string OrderNumber,
- int TotalAmount,
- OrderStatus Status,
- int? ChannelID,
- string? ChannelName,
- bool HasPhysical,
- bool HasDigital,
- DateTime CreatedAt,
- DateTime? PaidAt,
- int ItemCount,
- string FirstItemName,
- string? FirstItemThumbnail,
- ShipmentStatus? ShipmentStatus,
- bool HasActiveRefundRequest
- );
- }
|