Tomasi - Developing 35e83c4735 beta 0.0.3
2024-11-26 08:43:01 +01:00

10 lines
249 B
C#

namespace Application.DataTransferObjects.MarshalGuardParticipant;
public class CreateMarshalGuardParticipantDto
{
public Guid PlayerId { get; set; }
public Guid MarshalGuardId { get; set; }
public bool Participated { get; set; }
}