namespace PluginLoader.Stats.Model; // Statistics for all plugins public class PluginStats { // Key: pluginId public Dictionary Stats { get; set; } = new(); // Token the player is required to present for voting (making it harder to spoof votes) public string VotingToken { get; set; } }