Command.cs 588 B

1234567891011121314151617181920212223
  1. using Application.Abstractions.Messaging;
  2. using Microsoft.AspNetCore.Http;
  3. namespace Application.Features.Admin.Crypto.List.Create
  4. {
  5. public sealed record Command(
  6. string Symbol,
  7. string KorName,
  8. string EngName,
  9. IFormFile? LogoImageFile,
  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. int[] CategoryIDs
  21. ) : ICommand;
  22. }