mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
14 lines
327 B
C#
14 lines
327 B
C#
namespace Application.DataTransferObjects.ZombieSiegeParticipant;
|
|
|
|
public class ZombieSiegeParticipantDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid PlayerId { get; set; }
|
|
|
|
public required string PlayerName { get; set; }
|
|
|
|
public Guid ZombieSiegeId { get; set; }
|
|
|
|
public int SurvivedWaves { get; set; }
|
|
} |