using System; using PF3.Models; namespace PF3.DTO.Show.Response; public class ReadShowDto { public int? Id { get; set; } public string? Name { get; set; } public string? Place { get; set; } public string? Description { get; set; } public string? PyrotechnicImplementationPlan { get; set; } public DateTime? Date { get; set; } public int CityId { get; set; } public string? City { get; set; } public List? ShowStaffs { get; set; } public List? ShowTrucks { get; set; } public List? SoundTimecodes { get; set; } public List? ProductTimecodes { get; set; } public List? Contracts { get; set; } public List? ShowMaterials { get; set; } }