| 12345678910111213 |
- namespace Application.Features.Admin.Channel.ExpConfig.Get;
- public sealed record Response(
- int ChatXpPerMessage,
- int DonationXpPerAmount,
- int ChatXpSessionLimit,
- int MinContentLength,
- int RateLimitSec,
- int LeaderboardSize,
- int CrownTopN,
- bool UxShowLeaderboard,
- bool UxShowMyXpBadge
- );
|