Files
PF3-fork/PyroFetes/DTO/SoundTimecode/Request/UpdateSoundTimecodeDto.cs
2025-11-13 14:13:26 +01:00

10 lines
258 B
C#

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