IW4M-Admin/Plugins/SimpleStats/Helpers/ServerStats.cs
RaidMax 0b62cba52a Add libraries for EntityFramework
Stats plugin work
Allow plugins to dynamically add EF classes to the context
2018-02-06 23:19:06 -06:00

23 lines
527 B
C#

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; }
public EFServer Server { get; private set; }
public ServerStats(EFServer sv)
{
PlayerStats = new Dictionary<int, EFClientStatistics>();
Server = sv;
}
}
}