Files
PF3-fork/PyroFetes/DTO/Show/Request/CreateShowDto.cs
2025-11-13 15:11:12 +01:00

10 lines
297 B
C#

namespace PyroFetes.DTO.Show.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 DateTime? Date { get; set; }
}