mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
18 lines
381 B
C#
18 lines
381 B
C#
using System;
|
|
|
|
namespace Nikse.SubtitleEdit.Core.VobSub
|
|
{
|
|
public class IdxParagraph
|
|
{
|
|
public TimeSpan StartTime { get; private set; }
|
|
|
|
public long FilePosition { get; private set; }
|
|
|
|
public IdxParagraph(TimeSpan startTime, long filePosition)
|
|
{
|
|
StartTime = startTime;
|
|
FilePosition = filePosition;
|
|
}
|
|
}
|
|
}
|