Tomasi - Developing a8a032c1d7 ..
2024-10-10 07:43:07 +02:00

24 lines
456 B
C#

using System.ComponentModel.DataAnnotations;
namespace Application.DataTransferObjects.MarshalGuard;
public class UpdateMarshalGuardDto
{
[Required]
public Guid Id { get; set; }
[Required]
public Guid PlayerId { get; set; }
[Required]
public bool Participated { get; set; }
[Required]
public int Year { get; set; }
[Required]
public int Month { get; set; }
[Required]
public int Day { get; set; }
}