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

14 lines
287 B
C#

namespace Application.DataTransferObjects.DesertStorm;
public class DesertStormDto
{
public Guid Id { get; set; }
public bool Registered { get; set; }
public bool Participated { get; set; }
public int Year { get; set; }
public int CalendarWeek { get; set; }
}