namespace MediaBrowser.Model.Chapters
{
public class RemoteChapterInfo
{
///
/// Gets or sets the start position ticks.
///
/// The start position ticks.
public long StartPositionTicks { get; set; }
///
/// Gets or sets the name.
///
/// The name.
public string Name { get; set; }
}
}