1
0
Files
mineplex-crepe/Website/LOC.Website.Common/DominateStatsDisplay.cs
2021-08-19 16:35:32 +07:00

14 lines
444 B
C#

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