namespace MediaBrowser.Model.Chapters { public class RemoteChapterResult { /// /// Gets or sets the identifier. /// /// The identifier. public string Id { get; set; } /// /// Gets or sets the run time ticks. /// /// The run time ticks. public long? RunTimeTicks { get; set; } /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the name of the provider. /// /// The name of the provider. public string ProviderName { get; set; } /// /// Gets or sets the community rating. /// /// The community rating. public float? CommunityRating { get; set; } /// /// Gets or sets the chapter count. /// /// The chapter count. public int? ChapterCount { get; set; } /// /// Gets or sets the name of the three letter iso language. /// /// The name of the three letter iso language. public string ThreeLetterISOLanguageName { get; set; } } }