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

8 lines
276 B
C#

using Application.DataTransferObjects.MarshalGuardParticipant;
namespace Application.DataTransferObjects.MarshalGuard;
public class MarshalGuardDetailDto : MarshalGuardDto
{
public ICollection<MarshalGuardParticipantDto> MarshalGuardParticipants { get; set; } = [];
}