improve ReadShowDto.cs

This commit is contained in:
2025-10-09 17:54:25 +02:00
parent 9d5b3474c2
commit 149f4f325c
2 changed files with 27 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
using System;
using PF3.Models;
namespace PF3.DTO.Show.Response;
@@ -10,4 +11,14 @@ public class ReadShowDto
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<ShowStaff>? ShowStaffs { get; set; }
public List<ShowTruck>? ShowTrucks { get; set; }
public List<Models.SoundTimecode>? SoundTimecodes { get; set; }
public List<ProductTimecode>? ProductTimecodes { get; set; }
public List<Contract>? Contracts { get; set; }
public List<ShowMaterial>? ShowMaterials { get; set; }
}