| 123456789101112 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Admin.Crypto.Curation.Save;
- public sealed record Command(IReadOnlyList<Command.Row> Items) : ICommand
- {
- public sealed record Row(
- int CoinID,
- bool IsFeatured,
- short DisplayOrder
- );
- }
|