mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
18 lines
386 B
C#
18 lines
386 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Application.DataTransferObjects.ZombieSiegeParticipant;
|
|
|
|
public class UpdateZombieSiegeParticipantDto
|
|
{
|
|
[Required]
|
|
public Guid Id { get; set; }
|
|
|
|
[Required]
|
|
public Guid PlayerId { get; set; }
|
|
|
|
[Required]
|
|
public Guid ZombieSiegeId { get; set; }
|
|
|
|
[Required]
|
|
public int SurvivedWaves { get; set; }
|
|
} |