Response.cs 380 B

12345678910111213141516
  1. namespace Application.Features.Admin.Crypto.Curation.Get;
  2. public sealed record Response(int Total, IReadOnlyList<Response.Row> List)
  3. {
  4. public sealed record Row(
  5. int Num,
  6. int ID,
  7. string Symbol,
  8. string KorName,
  9. string EngName,
  10. string? LogoImage,
  11. bool IsFeatured,
  12. short DisplayOrder,
  13. bool IsActive
  14. );
  15. }