jellyfin/MediaBrowser.Model/Entities/ChapterInfo.cs

30 lines
757 B
C#
Raw Normal View History

2016-07-06 19:44:44 +02:00
using System;
2013-02-21 02:33:05 +01:00
namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Class ChapterInfo
/// </summary>
public class ChapterInfo
{
/// <summary>
/// Gets or sets the start position ticks.
/// </summary>
/// <value>The start position ticks.</value>
public long StartPositionTicks { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Gets or sets the image path.
/// </summary>
/// <value>The image path.</value>
public string ImagePath { get; set; }
2016-07-06 19:44:44 +02:00
public DateTime ImageDateModified { get; set; }
2013-02-21 02:33:05 +01:00
}
}