10 lines
291 B
C#
10 lines
291 B
C#
namespace PF3.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; }
|
|
} |