-
-
Notifications
You must be signed in to change notification settings - Fork 44
datamodelsclientstats EFClientRankingHistory
RaidMax edited this page May 21, 2023
·
1 revision
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Data.Models.Client.Stats
Data.Models.Client.Stats.EFClientRankingHistory[[EFClientRankingHistory]]
end
subgraph Stats.Models
Stats.Models.AuditFields[[AuditFields]]
end
Stats.Models.AuditFields --> Data.Models.Client.Stats.EFClientRankingHistory
Type | Name | Methods |
---|---|---|
EFClient |
Client |
get, set |
int |
ClientId |
get, set |
long |
ClientRankingHistoryId |
get, set |
bool |
Newest |
get, set |
string |
PerformanceBucket |
get, set |
Nullable <double > |
PerformanceMetric |
get, set |
Nullable <int > |
Ranking |
get, set |
EFServer |
Server |
get, set |
Nullable <long > |
ServerId |
get, set |
Nullable <double > |
ZScore |
get, set |
public EFClientRankingHistory()
public long ClientRankingHistoryId { get; set; }
public int ClientId { get; set; }
public virtual EFClient Client { get; set; }
public Nullable<long> ServerId { get; set; }
public virtual EFServer Server { get; set; }
public bool Newest { get; set; }
public Nullable<int> Ranking { get; set; }
public Nullable<double> ZScore { get; set; }
public Nullable<double> PerformanceMetric { get; set; }
public string PerformanceBucket { get; set; }
Generated with ModularDoc