Response.cs 323 B

12345678910111213
  1. namespace Application.Features.Admin.Channel.ExpConfig.Get;
  2. public sealed record Response(
  3. int ChatXpPerMessage,
  4. int DonationXpPerAmount,
  5. int ChatXpSessionLimit,
  6. int MinContentLength,
  7. int RateLimitSec,
  8. int LeaderboardSize,
  9. int CrownTopN,
  10. bool UxShowLeaderboard,
  11. bool UxShowMyXpBadge
  12. );