Response.cs 209 B

12345678
  1. namespace Application.Features.Admin.Crypto.TickerConfig.Get;
  2. public sealed record Response(
  3. int TickerRefreshSeconds,
  4. decimal SurgeThreshold,
  5. decimal PlungeThreshold,
  6. int MainPageCoinCount
  7. );