mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
18 lines
415 B
C#
18 lines
415 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Application.DataTransferObjects.CustomEventParticipant;
|
|
|
|
public class UpdateCustomEventParticipantDto
|
|
{
|
|
[Required] public Guid Id { get; set; }
|
|
|
|
[Required]
|
|
public Guid CustomEventId { get; set; }
|
|
|
|
[Required]
|
|
public Guid PlayerId { get; set; }
|
|
|
|
public bool? Participated { get; set; }
|
|
|
|
public long? AchievedPoints { get; set; }
|
|
} |