Command.cs 263 B

12345678910
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Admin.Crypto.TickerConfig.Save;
  3. public sealed record Command(
  4. int TickerRefreshSeconds,
  5. decimal SurgeThreshold,
  6. decimal PlungeThreshold,
  7. int MainPageCoinCount
  8. ) : ICommand;