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; }
|
||||
}
|
||||
14
PyroFetes/DTO/Sound/Request/CreateSoundDto.cs
Normal file
14
PyroFetes/DTO/Sound/Request/CreateSoundDto.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace PF3.DTO.SoundCategory.Request;
|
||||
|
||||
public class CreateSoundDto
|
||||
{
|
||||
public string? Name { get; set; }
|
||||
public string? Type { get; set; }
|
||||
public string? Artist { get; set; }
|
||||
public string? Duration { get; set; }
|
||||
public string? Kind { get; set; }
|
||||
public string? Format { get; set; }
|
||||
public DateTime? CreationDate { get; set; }
|
||||
public string? SoundCategoryId { get; set; }
|
||||
|
||||
}
|
||||
6
PyroFetes/DTO/Sound/Request/IdSoundto.cs
Normal file
6
PyroFetes/DTO/Sound/Request/IdSoundto.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace PF3.DTO.SoundCategory.Request;
|
||||
|
||||
public class IdSoundto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
}
|
||||
15
PyroFetes/DTO/Sound/Request/UpdateSoundDto.cs
Normal file
15
PyroFetes/DTO/Sound/Request/UpdateSoundDto.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace PF3.DTO.SoundCategory.Request;
|
||||
|
||||
public class UpdateSoundDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string? Name { get; set; }
|
||||
public string? Type { get; set; }
|
||||
public string? Artist { get; set; }
|
||||
public string? Duration { get; set; }
|
||||
public string? Kind { get; set; }
|
||||
public string? Format { get; set; }
|
||||
public DateTime? CreationDate { get; set; }
|
||||
public string? SoundCategoryId { get; set; }
|
||||
|
||||
}
|
||||
15
PyroFetes/DTO/Sound/Response/ReadSoundDto.cs
Normal file
15
PyroFetes/DTO/Sound/Response/ReadSoundDto.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace PF3.DTO.SoundCategory.Response;
|
||||
|
||||
public class ReadSoundDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string? Name { get; set; }
|
||||
public string? Type { get; set; }
|
||||
public string? Artist { get; set; }
|
||||
public string? Duration { get; set; }
|
||||
public string? Kind { get; set; }
|
||||
public string? Format { get; set; }
|
||||
public DateTime? CreationDate { get; set; }
|
||||
public string? SoundCategoryId { get; set; }
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace PF3.DTO.SoundCategory.Request;
|
||||
|
||||
public class CreateSoundCategoryDto
|
||||
{
|
||||
public string? Name { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace PF3.DTO.SoundCategory.Request;
|
||||
|
||||
public class IdSoundCategoryDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace PF3.DTO.SoundCategory.Request;
|
||||
|
||||
public class UpdateSoundCategoryDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string? Name { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace PF3.DTO.SoundCategory.Response;
|
||||
|
||||
public class ReadSoundCategoryDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string? Name { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace PF3.DTO.SoundTimecode.Request;
|
||||
|
||||
public class CreateSoundTimecodeDto
|
||||
{
|
||||
public int ShowId { get; set; }
|
||||
public int SoundId { get; set; }
|
||||
public int Start { get; set; }
|
||||
public int End { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace PF3.DTO.SoundTimecode.Request;
|
||||
|
||||
public class IdSoundTimecodeDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
namespace PF3.DTO.SoundTimecode.Request;
|
||||
|
||||
public class UpdateSoundTimecodeDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public int ShowId { get; set; }
|
||||
public int SoundId { get; set; }
|
||||
public int Start { get; set; }
|
||||
public int End { get; set; }
|
||||
}
|
||||
10
PyroFetes/DTO/SoundTimecode/Response/ReadSoundTimecodeDto.cs
Normal file
10
PyroFetes/DTO/SoundTimecode/Response/ReadSoundTimecodeDto.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace PF3.DTO.SoundTimecode.Response;
|
||||
|
||||
public class ReadSoundTimecodeDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public int? ShowId { get; set; }
|
||||
public int? SoundId { get; set; }
|
||||
public int Start { get; set; }
|
||||
public int End { get; set; }
|
||||
}
|
||||
9
PyroFetes/DTO/Staff/Request/CreateStaffDto.cs
Normal file
9
PyroFetes/DTO/Staff/Request/CreateStaffDto.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace PF3.DTO.Staff.Request;
|
||||
|
||||
public class CreateStaffDto
|
||||
{
|
||||
public string? FirstName { get; set; }
|
||||
public string? LastName { get; set; }
|
||||
public string? Profession { get; set; }
|
||||
public string? Email { get; set; }
|
||||
}
|
||||
6
PyroFetes/DTO/Staff/Request/IdStaffDto.cs
Normal file
6
PyroFetes/DTO/Staff/Request/IdStaffDto.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace PF3.DTO.Staff.Request;
|
||||
|
||||
public class IdStaffDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
}
|
||||
10
PyroFetes/DTO/Staff/Request/UpdateStaffDto.cs
Normal file
10
PyroFetes/DTO/Staff/Request/UpdateStaffDto.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace PF3.DTO.Staff.Request;
|
||||
|
||||
public class UpdateStaffDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string? FirstName { get; set; }
|
||||
public string? LastName { get; set; }
|
||||
public string? Profession { get; set; }
|
||||
public string? Email { get; set; }
|
||||
}
|
||||
10
PyroFetes/DTO/Staff/Response/ReadStaffDto.cs
Normal file
10
PyroFetes/DTO/Staff/Response/ReadStaffDto.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace PF3.DTO.Staff.Response;
|
||||
|
||||
public class ReadStaffDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string? FirstName { get; set; }
|
||||
public string? LastName { get; set; }
|
||||
public string? Profession { get; set; }
|
||||
public string? Email { get; set; }
|
||||
}
|
||||
10
PyroFetes/DTO/Truck/Request/CreateTruckDto.cs
Normal file
10
PyroFetes/DTO/Truck/Request/CreateTruckDto.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace PF3.DTO.Truck.Request;
|
||||
|
||||
public class CreateTruckDto
|
||||
{
|
||||
public string? Type { get; set; }
|
||||
public string? MaxExplosiveCapacity { get; set; }
|
||||
public string? Sizes { get; set; }
|
||||
public string? Statut { get; set; }
|
||||
public int? ShowId { get; set; }
|
||||
}
|
||||
6
PyroFetes/DTO/Truck/Request/IdTruckDto.cs
Normal file
6
PyroFetes/DTO/Truck/Request/IdTruckDto.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace PF3.DTO.Truck.Request;
|
||||
|
||||
public class IdTruckDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
}
|
||||
11
PyroFetes/DTO/Truck/Request/UpdateTruckDto.cs
Normal file
11
PyroFetes/DTO/Truck/Request/UpdateTruckDto.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace PF3.DTO.Truck.Request;
|
||||
|
||||
public class UpdateTruckDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string? Type { get; set; }
|
||||
public string? MaxExplosiveCapacity { get; set; }
|
||||
public string? Sizes { get; set; }
|
||||
public string? Statut { get; set; }
|
||||
public int? ShowId { get; set; }
|
||||
}
|
||||
11
PyroFetes/DTO/Truck/Response/ReadTruckDto.cs
Normal file
11
PyroFetes/DTO/Truck/Response/ReadTruckDto.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace PF3.DTO.Truck.Response;
|
||||
|
||||
public class ReadTruckDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string? Type { get; set; }
|
||||
public string? MaxExplosiveCapacity { get; set; }
|
||||
public string? Sizes { get; set; }
|
||||
public string? Statut { get; set; }
|
||||
public int? ShowId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user