11 lines
324 B
C#
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; }
|
|
} |