mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-26 13:12:39 +01:00
9 lines
247 B
C#
9 lines
247 B
C#
namespace Nikse.SubtitleEdit.Core.ContainerFormats.Mp4
|
|
{
|
|
public class TimeSegment
|
|
{
|
|
public uint? Duration { get; set; }
|
|
public uint? TimeOffset { get; set; }
|
|
public ulong BaseMediaDecodeTime { get; set; }
|
|
}
|
|
} |