Mineplex2018-withcommit/Website/LOC.Website.Common/DominateStatsDisplay.cs

14 lines
444 B
C#
Raw Permalink Normal View History

2013-08-27 17:14:08 +02:00
namespace LOC.Website.Common
{
using System.Collections.Generic;
using Core.Model.Server.GameServer.Dominate.Stats;
public class DominateStatsDisplay
{
public List<DominatePlayerStats> MostPoints { get; set; }
public List<DominatePlayerStats> MostKills { get; set; }
public List<DominatePlayerStats> MostAssists { get; set; }
public List<DominatePlayerStats> MostDeaths { get; set; }
}
}