-
-
Notifications
You must be signed in to change notification settings - Fork 44
datamodelszombie ZombieRoundClientStat
RaidMax edited this page May 21, 2023
·
1 revision
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