Response.cs 381 B

1234567891011121314151617181920
  1. namespace Application.Features.Api.MyPage.ChargeLogs;
  2. public sealed record Response(
  3. List<ChargeLogItem> List,
  4. int Total,
  5. int Page,
  6. int PerPage
  7. );
  8. public sealed record ChargeLogItem(
  9. int ID,
  10. string OrderID,
  11. int Amount,
  12. int PointAmount,
  13. int VatAmount,
  14. string PaymentMethod,
  15. string Status,
  16. DateTime CreatedAt,
  17. DateTime? PaidAt
  18. );