add sorting and zscore to scoreboard

This commit is contained in:
RaidMax
2022-01-24 09:56:48 -06:00
parent 16831aaccb
commit d3962989b5
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; }
}
}