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