mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-16 01:59:18 -05:00
add initial public zombie stats models, migrations, and events
This commit is contained in:
13
Data/Models/Zombie/ZombieRoundClientStat.cs
Normal file
13
Data/Models/Zombie/ZombieRoundClientStat.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace Data.Models.Zombie;
|
||||
|
||||
public class ZombieRoundClientStat : ZombieClientStat
|
||||
{
|
||||
public DateTimeOffset StartTime { get; set; } = DateTimeOffset.UtcNow;
|
||||
public DateTimeOffset? EndTime { get; set; }
|
||||
public TimeSpan? Duration { get; set; }
|
||||
public TimeSpan? TimeAlive { get; set; }
|
||||
public int RoundNumber { get; set; }
|
||||
public int Points { get; set; }
|
||||
}
|
Reference in New Issue
Block a user