1 sharedlibrarycoredtos PlayerInfo
RaidMax edited this page 2023-05-20 22:09:21 -05:00

PlayerInfo Public class

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph SharedLibraryCore.Dtos
  SharedLibraryCore.Dtos.PlayerInfo[[PlayerInfo]]
  end

Members

Properties

Public properties

Type Name Methods
EFPenalty ActivePenalty get, set
string ActivePenaltyType get, set
List<(string Item1, DateTime Item2)> Aliases get, set
bool Authenticated get, set
int ClientId get, set
string ConnectProtocolUrl get, set
string CurrentServerName get, set
Game Game get, set
IGeoLocationResult GeoLocationInfo get, set
bool HasActivePenalty get, set
string IPAddress get, set
List<(string Item1, DateTime Item2)> IPs get, set
List<IInteractionData> Interactions get, set
DateTime LastConnection get, set
string LastConnectionText get
string Level get, set
int LevelInt get, set
IDictionary<int, long> LinkedAccounts get, set
List<InformationResponse> Meta get, set
Nullable<MetaType> MetaFilterType get, set
string Name get, set
long NetworkId get, set
ClientNoteMetaResponse NoteMeta get, set
bool Online get, set
string Tag get, set
string TimeOnline get, set
Nullable<double> ZScore get, set

Details

Constructors

PlayerInfo

Source code

public PlayerInfo()

Properties

Name

public string Name { get; set; }

Game

public Game Game { get; set; }

ClientId

public int ClientId { get; set; }

Level

public string Level { get; set; }

Tag

public string Tag { get; set; }

LevelInt

public int LevelInt { get; set; }

IPAddress

public string IPAddress { get; set; }

NetworkId

public long NetworkId { get; set; }

Aliases

public List<(string Item1, DateTime Item2)> Aliases { get; set; }

IPs

public List<(string Item1, DateTime Item2)> IPs { get; set; }

HasActivePenalty

public bool HasActivePenalty { get; set; }

ActivePenaltyType

public string ActivePenaltyType { get; set; }

Authenticated

public bool Authenticated { get; set; }

Meta

public List<InformationResponse> Meta { get; set; }

ActivePenalty

public EFPenalty ActivePenalty { get; set; }

Online

public bool Online { get; set; }

TimeOnline

public string TimeOnline { get; set; }

LastConnection

public DateTime LastConnection { get; set; }

LastConnectionText

public string LastConnectionText { get; }

LinkedAccounts

public IDictionary<int, long> LinkedAccounts { get; set; }

MetaFilterType

public Nullable<MetaType> MetaFilterType { get; set; }

ZScore

public Nullable<double> ZScore { get; set; }

ConnectProtocolUrl

public string ConnectProtocolUrl { get; set; }

CurrentServerName

public string CurrentServerName { get; set; }

GeoLocationInfo

public IGeoLocationResult GeoLocationInfo { get; set; }

NoteMeta

public ClientNoteMetaResponse NoteMeta { get; set; }

Interactions

public List<IInteractionData> Interactions { get; set; }

Generated with ModularDoc