2024-11-28 13:16:41 +01:00

8 lines
270 B
C#

using Application.DataTransferObjects.ZombieSiegeParticipant;
namespace Application.DataTransferObjects.ZombieSiege;
public class ZombieSiegeDetailDto : ZombieSiegeDto
{
public ICollection<ZombieSiegeParticipantDto> ZombieSiegeParticipants { get; set; } = [];
}