Response.cs 617 B

123456789101112131415161718192021222324
  1. namespace Application.Features.Admin.Crypto.List.Get
  2. {
  3. public sealed record Response(
  4. int ID,
  5. string Symbol,
  6. IReadOnlyList<string> Markets,
  7. string KorName,
  8. string EngName,
  9. string? LogoImage,
  10. string? Description,
  11. string? ContractAddress,
  12. string? WebsiteUrl,
  13. string? WhitepaperUrl,
  14. string? TwitterUrl,
  15. string? TelegramUrl,
  16. bool IsActive,
  17. bool IsWarning,
  18. bool IsNew,
  19. bool IsDelisted,
  20. IReadOnlyList<int> CategoryIDs,
  21. DateTime? UpdatedAt,
  22. DateTime CreatedAt
  23. );
  24. }