mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
14 lines
321 B
C#
14 lines
321 B
C#
namespace Database.Entities;
|
|
|
|
public class ZombieSiegeParticipant : BaseEntity
|
|
{
|
|
public Player Player { get; set; } = null!;
|
|
|
|
public Guid PlayerId { get; set; }
|
|
|
|
public Guid ZombieSiegeId { get; set; }
|
|
|
|
public ZombieSiege ZombieSiege { get; set; } = null!;
|
|
|
|
public int SurvivedWaves { get; set; }
|
|
} |