mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
8 lines
270 B
C#
8 lines
270 B
C#
using Application.DataTransferObjects.ZombieSiegeParticipant;
|
|
|
|
namespace Application.DataTransferObjects.ZombieSiege;
|
|
|
|
public class ZombieSiegeDetailDto : ZombieSiegeDto
|
|
{
|
|
public ICollection<ZombieSiegeParticipantDto> ZombieSiegeParticipants { get; set; } = [];
|
|
} |