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

14 lines
474 B
C#
Raw Normal View History

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