Files
AP-WEB-PF3/PF3/DTO/SoundTimecode/Response/ReadSoundTimecodeDto.cs
2025-10-16 17:00:36 +02:00

10 lines
259 B
C#

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