aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Chapters/RemoteChapterResult.cs
blob: 5c58e5e7b7f597caca289fc470540e780bb6e888 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
namespace MediaBrowser.Model.Chapters
{
    public class RemoteChapterResult
    {
        /// <summary>
        /// Gets or sets the identifier.
        /// </summary>
        /// <value>The identifier.</value>
        public string Id { get; set; }

        /// <summary>
        /// Gets or sets the run time ticks.
        /// </summary>
        /// <value>The run time ticks.</value>
        public long? RunTimeTicks { get; set; }

        /// <summary>
        /// Gets or sets the name.
        /// </summary>
        /// <value>The name.</value>
        public string Name { get; set; }

        /// <summary>
        /// Gets or sets the community rating.
        /// </summary>
        /// <value>The community rating.</value>
        public float? CommunityRating { get; set; }

        /// <summary>
        /// Gets or sets the chapter count.
        /// </summary>
        /// <value>The chapter count.</value>
        public int? ChapterCount { get; set; }
    }
}