aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Chapters/RemoteChapterInfo.cs
blob: 52b6c1bcdfa674da6ef37be70b87e45a82010f53 (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
namespace MediaBrowser.Model.Chapters
{
    public class RemoteChapterInfo
    {
        /// <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; }
    }

    public class ChapterProviderInfo
    {
        public string Name { get; set; }
        public string Id { get; set; }
    }
}