2024-12-17 11:27:47 +01:00

16 lines
370 B
C#

using System.ComponentModel.DataAnnotations;
namespace Application.DataTransferObjects.CustomEventParticipant;
public class CreateCustomEventParticipantDto
{
[Required]
public Guid CustomEventId { get; set; }
[Required]
public Guid PlayerId { get; set; }
public bool? Participated { get; set; }
public long? AchievedPoints { get; set; }
}