embed plugin loader directly into the launcher
This commit is contained in:
11
PluginLoader/Stats/Model/PluginStats.cs
Normal file
11
PluginLoader/Stats/Model/PluginStats.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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; }
|
||||
}
|
Reference in New Issue
Block a user