Command.cs 289 B

123456789101112
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Admin.Crypto.Curation.Save;
  3. public sealed record Command(IReadOnlyList<Command.Row> Items) : ICommand
  4. {
  5. public sealed record Row(
  6. int CoinID,
  7. bool IsFeatured,
  8. short DisplayOrder
  9. );
  10. }