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:
20
Plugins/Stats/Web/Dtos/TopStatsInfo.cs
Normal file
20
Plugins/Stats/Web/Dtos/TopStatsInfo.cs
Normal 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user