jellyfin/MediaBrowser.Model/Entities/ChapterInfo.cs

35 lines
837 B
C#
Raw Normal View History

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