1 datamodelszombie ZombieMatch
RaidMax edited this page 2023-05-20 22:09:21 -05:00

ZombieMatch Public class

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph Data.Models.Zombie
  Data.Models.Zombie.ZombieMatch[[ZombieMatch]]
  end
  subgraph Data.Models
  Data.Models.DatedRecord[[DatedRecord]]
  end
Data.Models.DatedRecord --> Data.Models.Zombie.ZombieMatch

Members

Properties

Public properties

Type Name Methods
int ClientsCompleted get, set
EFMap Map get, set
Nullable<int> MapId get, set
Nullable<DateTimeOffset> MatchEndDate get, set
DateTimeOffset MatchStartDate get, set
EFServer Server get, set
Nullable<long> ServerId get, set
int ZombieMatchId get, set

Details

Inheritance

Constructors

ZombieMatch

Source code

public ZombieMatch()

Properties

ZombieMatchId

public int ZombieMatchId { get; set; }

MapId

public Nullable<int> MapId { get; set; }

Map

public virtual EFMap Map { get; set; }

ServerId

public Nullable<long> ServerId { get; set; }

Server

public virtual EFServer Server { get; set; }

ClientsCompleted

public int ClientsCompleted { get; set; }

MatchStartDate

public DateTimeOffset MatchStartDate { get; set; }

MatchEndDate

public Nullable<DateTimeOffset> MatchEndDate { get; set; }

Generated with ModularDoc