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

10 lines
221 B
C#

namespace Application.DataTransferObjects.DesertStorm;
public class CreateDesertStormDto
{
public Guid PlayerId { get; set; }
public bool Registered { get; set; }
public bool Participated { get; set; }
}