datamodelszombie ZombieRoundClientStat - RaidMax/IW4M-Admin GitHub Wiki
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Data.Models.Zombie
Data.Models.Zombie.ZombieRoundClientStat[[ZombieRoundClientStat]]
Data.Models.Zombie.ZombieClientStat[[ZombieClientStat]]
class Data.Models.Zombie.ZombieClientStat abstractStyle;
end
Data.Models.Zombie.ZombieClientStat --> Data.Models.Zombie.ZombieRoundClientStat
| Type | Name | Methods |
|---|---|---|
Nullable<TimeSpan> |
Duration |
get, set |
Nullable<DateTimeOffset> |
EndTime |
get, set |
int |
Points |
get, set |
int |
RoundNumber |
get, set |
DateTimeOffset |
StartTime |
get, set |
Nullable<TimeSpan> |
TimeAlive |
get, set |
public ZombieRoundClientStat()public DateTimeOffset StartTime { get; set; }public Nullable<DateTimeOffset> EndTime { get; set; }public Nullable<TimeSpan> Duration { get; set; }public Nullable<TimeSpan> TimeAlive { get; set; }public int RoundNumber { get; set; }public int Points { get; set; }Generated with ModularDoc