#pragma warning disable CS1591 using System; namespace MediaBrowser.Model.Entities { /// /// Class ChapterInfo. /// public class ChapterInfo { /// /// Gets or sets the start position ticks. /// /// The start position ticks. public long StartPositionTicks { get; set; } /// /// Gets or sets the name. /// /// The name. public string? Name { get; set; } /// /// Gets or sets the image path. /// /// The image path. public string? ImagePath { get; set; } public DateTime ImageDateModified { get; set; } public string? ImageTag { get; set; } } }