using ProtoBuf;
namespace MediaBrowser.Model.Entities
{
///
/// Class ChapterInfo
///
[ProtoContract]
public class ChapterInfo
{
///
/// Gets or sets the start position ticks.
///
/// The start position ticks.
[ProtoMember(1)]
public long StartPositionTicks { get; set; }
///
/// Gets or sets the name.
///
/// The name.
[ProtoMember(2)]
public string Name { get; set; }
///
/// Gets or sets the image path.
///
/// The image path.
[ProtoMember(3)]
public string ImagePath { get; set; }
}
}