namespace EllieBot.VotesApi
{
public class DiscordsVoteWebhookModel
{
///
/// The ID of the user who voted
///
public string User { get; set; }
///
/// The ID of the bot which recieved the vote
///
public string Bot { get; set; }
///
/// Contains totalVotes, votesMonth, votes24, hasVoted - a list of IDs of users who have voted this month, and
/// Voted24 - a list of IDs of users who have voted today
///
public string Votes { get; set; }
///
/// The type of event, whether it is a vote event or test event
///
public string Type { get; set; }
}
}