Response.cs 285 B

12345678910111213141516
  1. namespace Application.Features.Api.MyPage.GetExpLogs;
  2. public sealed record Response(
  3. List<ExpLogItem> List,
  4. int Total,
  5. int Page,
  6. int PerPage
  7. );
  8. public sealed record ExpLogItem(
  9. int ID,
  10. string Reason,
  11. int Amount,
  12. long Balance,
  13. DateTime CreatedAt
  14. );