| 12345678910111213141516171819202122232425 |
- using Application.Abstractions.Messaging;
- using Microsoft.AspNetCore.Http;
- namespace Application.Features.Admin.Crypto.List.Update
- {
- public sealed record Command(
- int ID,
- string Symbol,
- string KorName,
- string EngName,
- IFormFile? LogoImageFile,
- bool DeleteLogoImage,
- string? Description,
- string? ContractAddress,
- string? WebsiteUrl,
- string? WhitepaperUrl,
- string? TwitterUrl,
- string? TelegramUrl,
- bool IsActive,
- bool IsWarning,
- bool IsNew,
- bool IsDelisted,
- int[] CategoryIDs
- ) : ICommand;
- }
|