Files
AP-WEB-PF3/PF3/DTO/Request/CreateShowDto.cs
2025-10-02 16:35:43 +02:00

10 lines
286 B
C#

namespace PF3.DTO.Request;
public class CreateShowDto
{
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; }
}