Files
AP-WEB-PF3/PF3/DTO/Show/Request/UpdateShowDto.cs
2025-10-02 16:53:02 +02:00

11 lines
324 B
C#

namespace PF3.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 DateOnly? Date { get; set; }
}