PlayerManagement/Database/Entities/ZombieSiegeParticipant.cs
2024-11-28 13:16:41 +01:00

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; }
}