Finit les DTO

This commit is contained in:
2025-10-02 17:12:04 +02:00
parent 949aedac78
commit 29b9520193
14 changed files with 93 additions and 9 deletions

View 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; }
}

View File

@@ -0,0 +1,6 @@
namespace PF3.DTO.SoundTimecode.Request;
public class IdSoundTimecodeDto
{
public int? Id { get; set; }
}

View 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; }
}

View 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; }
}