2018-02-07 00:19:06 -05:00
|
|
|
|
using SharedLibrary;
|
|
|
|
|
using StatsPlugin.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace StatsPlugin.Helpers
|
|
|
|
|
{
|
|
|
|
|
public class ServerStats
|
|
|
|
|
{
|
|
|
|
|
public Dictionary<int, EFClientStatistics> PlayerStats { get; set; }
|
2018-02-09 02:21:25 -05:00
|
|
|
|
public EFServerStatistics ServerStatistics { get; private set; }
|
2018-02-07 00:19:06 -05:00
|
|
|
|
public EFServer Server { get; private set; }
|
|
|
|
|
|
2018-02-09 02:21:25 -05:00
|
|
|
|
public ServerStats(EFServer sv, EFServerStatistics st)
|
2018-02-07 00:19:06 -05:00
|
|
|
|
{
|
|
|
|
|
PlayerStats = new Dictionary<int, EFClientStatistics>();
|
2018-02-09 02:21:25 -05:00
|
|
|
|
ServerStatistics = st;
|
2018-02-07 00:19:06 -05:00
|
|
|
|
Server = sv;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|