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