1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 23:31:13 -05:00

added top player stats

fix for some commands returning multiple matches found when target not required
This commit is contained in:
RaidMax
2018-05-28 20:30:31 -05:00
parent 045260c648
commit ebda1984fa
137 changed files with 426 additions and 41 deletions

View File

@ -0,0 +1,20 @@
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; }
}
}