-
-
Notifications
You must be signed in to change notification settings - Fork 44
datamodelsclientstats EFRating
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.EFRating[[EFRating]]
end
subgraph Data.Models
Data.Models.SharedEntity[[SharedEntity]]
end
Data.Models.SharedEntity --> Data.Models.Client.Stats.EFRating
Type | Name | Methods |
---|---|---|
int |
ActivityAmount |
get, set |
bool |
Newest |
get, set |
double |
Performance |
get, set |
int |
Ranking |
get, set |
EFClientRatingHistory |
RatingHistory |
get, set |
int |
RatingHistoryId |
get, set |
int |
RatingId |
get, set |
EFServer |
Server |
get, set |
Nullable <long > |
ServerId |
get, set |
DateTime |
When |
get, set |
public EFRating()
public int RatingId { get; set; }
public int RatingHistoryId { get; set; }
public virtual EFClientRatingHistory RatingHistory { get; set; }
public Nullable<long> ServerId { get; set; }
public virtual EFServer Server { get; set; }
public double Performance { get; set; }
public int Ranking { get; set; }
public bool Newest { get; set; }
public int ActivityAmount { get; set; }
public DateTime When { get; set; }
Generated with ModularDoc