mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
14 lines
287 B
C#
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; }
|
|
} |