1 datamodelsclient EFClient
RaidMax edited this page 2023-05-20 22:09:21 -05:00

EFClient Public class

Diagram

  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

Members

Properties

Public properties

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

Details

Inheritance

Nested types

Enums

  • Permission

Constructors

EFClient

Source code

public EFClient()

Properties

ClientId

public int ClientId { get; set; }

NetworkId

public long NetworkId { get; set; }

Connections

public int Connections { get; set; }

TotalConnectionTime

public int TotalConnectionTime { get; set; }

FirstConnection

public DateTime FirstConnection { get; set; }

LastConnection

public DateTime LastConnection { get; set; }

GameName

public Game GameName { get; set; }

Masked

public bool Masked { get; set; }

AliasLinkId

public int AliasLinkId { get; set; }
public virtual EFAliasLink AliasLink { get; set; }

Level

public Permission Level { get; set; }

CurrentAliasId

public int CurrentAliasId { get; set; }

CurrentAlias

public virtual EFAlias CurrentAlias { get; set; }

Password

public string Password { get; set; }

PasswordSalt

public string PasswordSalt { get; set; }

Meta

public virtual ICollection<EFMeta> Meta { get; set; }

ReceivedPenalties

public virtual ICollection<EFPenalty> ReceivedPenalties { get; set; }

AdministeredPenalties

public virtual ICollection<EFPenalty> AdministeredPenalties { get; set; }

ZombieAggregateClientStats

public virtual ICollection<ZombieAggregateClientStat> ZombieAggregateClientStats { get; set; }

ZombieClientStats

public virtual ICollection<ZombieClientStat> ZombieClientStats { get; set; }

ZombieMatches

public virtual ICollection<ZombieMatch> ZombieMatches { get; set; }

ZombieMatchClientStats

public virtual ICollection<ZombieMatchClientStat> ZombieMatchClientStats { get; set; }

ZombieRoundClientStats

public virtual ICollection<ZombieRoundClientStat> ZombieRoundClientStats { get; set; }

Generated with ModularDoc