IW4M-Admin/Plugins/Stats/Web/Dtos/TopStatsInfo.cs
RaidMax 2204686b08 added top player stats
fix for some commands returning multiple matches found when target not required
2018-05-28 20:30:31 -05:00

21 lines
586 B
C#

using SharedLibraryCore.Dtos;
using System;
using System.Collections.Generic;
using System.Text;
namespace IW4MAdmin.Plugins.Stats.Web.Dtos
{
public class TopStatsInfo : SharedInfo
{
public int Ranking { get; set; }
public string Name { get; set; }
public int ClientId { get; set; }
public double KDR { get; set; }
public double Performance { get; set; }
public string TimePlayed { get; set; }
public string LastSeen { get; set; }
public int Kills { get; set; }
public int Deaths { get; set; }
}
}