Files
se-launcher/PluginLoader/Stats/Model/PluginStats.cs

11 lines
324 B
C#

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