11 lines
318 B
C#
11 lines
318 B
C#
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; }
|
|
} |