1
0
Files

14 lines
444 B
C#
Raw Permalink Normal View History

2021-08-19 16:35:32 +07: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; }
}
}