using SharedLibrary; using StatsPlugin.Cheat; using StatsPlugin.Models; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StatsPlugin.Helpers { class ServerStats { public ConcurrentDictionary PlayerStats { get; set; } public ConcurrentDictionary PlayerDetections { get; set; } public EFServerStatistics ServerStatistics { get; private set; } public EFServer Server { get; private set; } public ServerStats(EFServer sv, EFServerStatistics st) { PlayerStats = new ConcurrentDictionary(); PlayerDetections = new ConcurrentDictionary(); ServerStatistics = st; Server = sv; } } }