mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-09 23:00:57 -05:00
11 lines
269 B
C#
11 lines
269 B
C#
using Data.Models.Zombie;
|
|
|
|
namespace IW4MAdmin.Plugins.ZombieStats.States;
|
|
|
|
public record RoundState
|
|
{
|
|
public ZombieRoundClientStat PersistentClientRound { get; init; } = null!;
|
|
public DateTimeOffset? DiedAt { get; set; }
|
|
public int Hits { get; set; }
|
|
}
|