Mineplex2018-withcommit/Website/LOC.Website.Common/CaptureThePigStatsDisplay.cs
Jonathan Williams 3fb52c5c71 Initial Commit
2013-08-27 08:14:08 -07:00

14 lines
474 B
C#

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; }
}
}