jellyfin/MediaBrowser.Model/Entities/ChapterInfo.cs

36 lines
852 B
C#
Raw Normal View History

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