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

14 lines
274 B
C#

namespace Application.DataTransferObjects.MarshalGuard;
public class MarshalGuardDto
{
public Guid Id { get; set; }
public bool Participated { get; set; }
public int Year { get; set; }
public int Month { get; set; }
public int Day { get; set; }
}