datamodelsclient EFClient - RaidMax/IW4M-Admin GitHub Wiki
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Data.Models.Client
Data.Models.Client.EFClient[[EFClient]]
end
subgraph Data.Models
Data.Models.SharedEntity[[SharedEntity]]
end
Data.Models.SharedEntity --> Data.Models.Client.EFClient
| Type | Name | Methods |
|---|---|---|
ICollection<EFPenalty> |
AdministeredPenalties |
get, set |
EFAliasLink |
AliasLink |
get, set |
int |
AliasLinkId |
get, set |
int |
ClientId |
get, set |
int |
Connections |
get, set |
EFAlias |
CurrentAlias |
get, set |
int |
CurrentAliasId |
get, set |
DateTime |
FirstConnection |
get, set |
Game |
GameName |
get, set |
DateTime |
LastConnection |
get, set |
Permission |
Level |
get, set |
bool |
Masked |
get, set |
ICollection<EFMeta> |
Meta |
get, set |
long |
NetworkId |
get, set |
string |
Password |
get, set |
string |
PasswordSalt |
get, set |
ICollection<EFPenalty> |
ReceivedPenalties |
get, set |
int |
TotalConnectionTime |
get, set |
ICollection<ZombieAggregateClientStat> |
ZombieAggregateClientStats |
get, set |
ICollection<ZombieClientStat> |
ZombieClientStats |
get, set |
ICollection<ZombieMatchClientStat> |
ZombieMatchClientStats |
get, set |
ICollection<ZombieMatch> |
ZombieMatches |
get, set |
ICollection<ZombieRoundClientStat> |
ZombieRoundClientStats |
get, set |
Permission
public EFClient()public int ClientId { get; set; }public long NetworkId { get; set; }public int Connections { get; set; }public int TotalConnectionTime { get; set; }public DateTime FirstConnection { get; set; }public DateTime LastConnection { get; set; }public Game GameName { get; set; }public bool Masked { get; set; }public int AliasLinkId { get; set; }public virtual EFAliasLink AliasLink { get; set; }public Permission Level { get; set; }public int CurrentAliasId { get; set; }public virtual EFAlias CurrentAlias { get; set; }public string Password { get; set; }public string PasswordSalt { get; set; }public virtual ICollection<EFMeta> Meta { get; set; }public virtual ICollection<EFPenalty> ReceivedPenalties { get; set; }public virtual ICollection<EFPenalty> AdministeredPenalties { get; set; }public virtual ICollection<ZombieAggregateClientStat> ZombieAggregateClientStats { get; set; }public virtual ICollection<ZombieClientStat> ZombieClientStats { get; set; }public virtual ICollection<ZombieMatch> ZombieMatches { get; set; }public virtual ICollection<ZombieMatchClientStat> ZombieMatchClientStats { get; set; }public virtual ICollection<ZombieRoundClientStat> ZombieRoundClientStats { get; set; }Generated with ModularDoc