Command.cs 379 B

123456789101112131415
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Admin.Channel.ExpConfig.Update;
  3. public sealed record Command(
  4. int ChatXpPerMessage,
  5. int DonationXpPerAmount,
  6. int ChatXpSessionLimit,
  7. int MinContentLength,
  8. int RateLimitSec,
  9. int LeaderboardSize,
  10. int CrownTopN,
  11. bool UxShowLeaderboard,
  12. bool UxShowMyXpBadge
  13. ) : ICommand;