Finit les DTO
This commit is contained in:
9
PF3/DTO/SoundTimecode/Request/CreateSoundTimecodeDto.cs
Normal file
9
PF3/DTO/SoundTimecode/Request/CreateSoundTimecodeDto.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace PF3.DTO.SoundTimecode.Request;
|
||||
|
||||
public class CreateSoundTimecodeDto
|
||||
{
|
||||
public int? ShowId { get; set; }
|
||||
public int? SoundId { get; set; }
|
||||
public string? Start { get; set; }
|
||||
public string? End { get; set; }
|
||||
}
|
6
PF3/DTO/SoundTimecode/Request/IdSoundTimecodeDto.cs
Normal file
6
PF3/DTO/SoundTimecode/Request/IdSoundTimecodeDto.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace PF3.DTO.SoundTimecode.Request;
|
||||
|
||||
public class IdSoundTimecodeDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
}
|
10
PF3/DTO/SoundTimecode/Request/UpdateSoundTimecodeDto.cs
Normal file
10
PF3/DTO/SoundTimecode/Request/UpdateSoundTimecodeDto.cs
Normal file
@@ -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 string? Start { get; set; }
|
||||
public string? End { get; set; }
|
||||
}
|
10
PF3/DTO/SoundTimecode/Response/ReadSoundTimecodeDto.cs
Normal file
10
PF3/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 string? Start { get; set; }
|
||||
public string? End { get; set; }
|
||||
}
|
Reference in New Issue
Block a user