datamodelszombie ZombieClientStatRecord - 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.ZombieClientStatRecord[[ZombieClientStatRecord]]
end
subgraph Data.Models
Data.Models.DatedRecord[[DatedRecord]]
end
Data.Models.DatedRecord --> Data.Models.Zombie.ZombieClientStatRecord
| Type | Name | Methods |
|---|---|---|
EFClient |
Client |
get, set |
Nullable<int> |
ClientId |
get, set |
string |
Name |
get, set |
ZombieRoundClientStat |
Round |
get, set |
Nullable<long> |
RoundId |
get, set |
string |
Type |
get, set |
string |
Value |
get, set |
int |
ZombieClientStatRecordId |
get, set |
public ZombieClientStatRecord()public int ZombieClientStatRecordId { get; set; }public string Name { get; set; }public string Type { get; set; }public string Value { get; set; }public Nullable<int> ClientId { get; set; }public virtual EFClient Client { get; set; }public Nullable<long> RoundId { get; set; }public virtual ZombieRoundClientStat Round { get; set; }Generated with ModularDoc