1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

add sorting and zscore to scoreboard

This commit is contained in:
RaidMax
2022-01-24 09:56:48 -06:00
parent 84f32ff88e
commit 7fe2e51449
5 changed files with 65 additions and 18 deletions

View File

@ -8,6 +8,8 @@ namespace WebfrontCore.ViewModels
public string ServerName { get; set; }
public long ServerId { get; set; }
public string MapName { get; set; }
public string OrderByKey { get; set; }
public bool ShouldOrderDescending { get; set; }
public List<ClientScoreboardInfo> ClientInfo { get; set; }
}
@ -21,5 +23,6 @@ namespace WebfrontCore.ViewModels
public int? Deaths { get; set; }
public double? ScorePerMinute { get; set; }
public double? Kdr { get; set; }
public double? ZScore { get; set; }
}
}