changement de dosiier et création du dossier show afin de respecter l'architecture RESTful

This commit is contained in:
2025-10-02 16:38:06 +02:00
parent b12e5c0a0f
commit a179a3fab0
5 changed files with 1 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace PF3.DTO.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 DateOnly? Date { get; set; }
}