mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
21 lines
453 B
C#
21 lines
453 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Application.DataTransferObjects.DesertStormParticipants;
|
|
|
|
public class CreateDesertStormParticipantDto
|
|
{
|
|
[Required]
|
|
public Guid DesertStormId { get; set; }
|
|
|
|
[Required]
|
|
public Guid PlayerId { get; set; }
|
|
|
|
[Required]
|
|
public bool Registered { get; set; }
|
|
|
|
[Required]
|
|
public bool Participated { get; set; }
|
|
|
|
[Required]
|
|
public bool StartPlayer { get; set; }
|
|
} |