initalisation
This commit is contained in:
10
PyroFetes/DTO/Show/Request/CreateShowDto.cs
Normal file
10
PyroFetes/DTO/Show/Request/CreateShowDto.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
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; }
|
||||
}
|
||||
6
PyroFetes/DTO/Show/Request/IdShowDto.cs
Normal file
6
PyroFetes/DTO/Show/Request/IdShowDto.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace PF3.DTO.Show.Request;
|
||||
|
||||
public class IdShowDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
}
|
||||
11
PyroFetes/DTO/Show/Request/UpdateShowDto.cs
Normal file
11
PyroFetes/DTO/Show/Request/UpdateShowDto.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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 DateTime? Date { get; set; }
|
||||
}
|
||||
11
PyroFetes/DTO/Show/Response/ReadShowDto.cs
Normal file
11
PyroFetes/DTO/Show/Response/ReadShowDto.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace PF3.DTO.Show.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 DateTime? Date { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user