diff options
Diffstat (limited to 'win/CS/HandBrake.Interop/Interop/Json/Encode/Range.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/Interop/Json/Encode/Range.cs | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/Interop/Json/Encode/Range.cs b/win/CS/HandBrake.Interop/Interop/Json/Encode/Range.cs new file mode 100644 index 000000000..2327e359f --- /dev/null +++ b/win/CS/HandBrake.Interop/Interop/Json/Encode/Range.cs @@ -0,0 +1,38 @@ +// -------------------------------------------------------------------------------------------------------------------- +// <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.Interop.Interop.Json.Encode +{ + /// <summary> + /// The range. + /// </summary> + public class Range + { + /// <summary> + /// Gets or sets the chapter end. + /// Type is "chapter", "time", "frame", or "preview". + /// </summary> + public string Type { get; set; } + + /// <summary> + /// Gets or sets the chapter start. + /// </summary> + public long? Start { get; set; } + + /// <summary> + /// Gets or sets the frame to start. + /// </summary> + public long? End { get; set; } + + /// <summary> + /// Gets or sets the seek points. + /// </summary> + public long? SeekPoints { get; set; } + } +}
\ No newline at end of file |