9 lines
235 B
C#
9 lines
235 B
C#
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; }
|
|
} |