namespace NadekoBot.VotesApi { public class TopggVoteWebhookModel { /// /// Discord ID of the bot that received a vote. /// public string Bot { get; set; } /// /// Discord ID of the user who voted. /// public string User { get; set; } /// /// The type of the vote (should always be "upvote" except when using the test button it's "test"). /// public string Type { get; set; } /// /// Whether the weekend multiplier is in effect, meaning users votes count as two. /// public bool Weekend { get; set; } /// /// Query string params found on the /bot/:ID/vote page. Example: ?a=1&b=2. /// public string Query { get; set; } } }