using System.Collections.Generic; using Data.Models.Client; using Data.Models.Client.Stats; using SharedLibraryCore.Dtos; namespace Stats.Dtos { public class AdvancedStatsInfo { public long? ServerId { get; set; } public string ServerEndpoint { get; set; } public string ClientName { get; set; } public int ClientId { get; set; } public EFClient.Permission Level { get; set; } public double? Performance { get; set; } public int? Ranking { get; set; } public int TotalRankedClients { get; set; } public double? ZScore { get; set; } public double? Rating { get; set; } public List Servers { get; set; } public List All { get; set; } public EFClientHitStatistic Aggregate { get; set; } public List ByHitLocation { get; set; } public List ByWeapon { get; set; } public List ByAttachmentCombo { get; set; } public List Ratings { get; set; } public List LegacyStats { get; set; } } }