-
-
Notifications
You must be signed in to change notification settings - Fork 44
datamodelszombie ZombieClientStatRecord
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.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