Files
PF3-fork/PyroFetes/DTO/Show/Response/ReadShowDto.cs
2025-11-13 14:13:26 +01:00

11 lines
323 B
C#

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; }
}