Files
AP-WEB-PF3/PF3/DTO/SoundTimecode/Request/UpdateSoundTimecodeDto.cs
2025-10-02 17:12:04 +02:00

10 lines
268 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 string? Start { get; set; }
public string? End { get; set; }
}