Files
PF3-fork/PyroFetes/DTO/SoundTimecode/Request/CreateSoundTimecodeDto.cs
2025-11-13 15:11:12 +01:00

9 lines
231 B
C#

namespace PyroFetes.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; }
}