mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
8 lines
270 B
C#
8 lines
270 B
C#
using Application.DataTransferObjects.CustomEventParticipant;
|
|
|
|
namespace Application.DataTransferObjects.CustomEvent;
|
|
|
|
public class CustomEventDetailDto : CustomEventDto
|
|
{
|
|
public ICollection<CustomEventParticipantDto> CustomEventParticipants { get; set; } = [];
|
|
} |