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

11 lines
330 B
C#

namespace PyroFetes.DTO.Show.Request;
public class UpdateShowDto
{
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; }
}