2020-02-04 00:49:27 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// Class ChapterInfo.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </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>
|
2023-08-22 16:09:31 +00:00
|
|
|
public string? Name { get; set; }
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the image path.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The image path.</value>
|
2023-08-22 16:09:31 +00:00
|
|
|
public string? ImagePath { get; set; }
|
2020-03-25 16:53:03 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public DateTime ImageDateModified { get; set; }
|
|
|
|
|
2023-08-22 16:09:31 +00:00
|
|
|
public string? ImageTag { get; set; }
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|