summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Interop/Json/Encode/Range.cs
blob: 50b874501e41bad2a4503144f6db60ca4a9f12af (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Range.cs" company="HandBrake Project (http://handbrake.fr)">
//   This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
//   The range.
// </summary>
// --------------------------------------------------------------------------------------------------------------------

namespace HandBrake.ApplicationServices.Interop.Json.Encode
{
    /// <summary>
    /// The range.
    /// </summary>
    public class Range
    {
        /// <summary>
        /// Gets or sets the chapter end.
        /// </summary>
        public int? ChapterEnd { get; set; }

        /// <summary>
        /// Gets or sets the chapter start.
        /// </summary>
        public int? ChapterStart { get; set; }

        /// <summary>
        /// Gets or sets the frame to start.
        /// </summary>
        public int? FrameToStart { get; set; }

        /// <summary>
        /// Gets or sets the frame to stop.
        /// </summary>
        public int? FrameToStop { get; set; }

        /// <summary>
        /// Gets or sets the pts to start.
        /// </summary>
        public int? PtsToStart { get; set; }

        /// <summary>
        /// Gets or sets the pts to stop.
        /// </summary>
        public int? PtsToStop { get; set; }

        /// <summary>
        /// Gets or sets the start at preview.
        /// </summary>
        public int? StartAtPreview { get; set; }

        /// <summary>
        /// Gets or sets the seek points.
        /// </summary>
        public int? SeekPoints { get; set; }
    }
}