diff options
Diffstat (limited to 'win/CS/HandBrake.Interop/Interop/Json/Encode/Mp4Options.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/Interop/Json/Encode/Mp4Options.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/Interop/Json/Encode/Mp4Options.cs b/win/CS/HandBrake.Interop/Interop/Json/Encode/Mp4Options.cs new file mode 100644 index 000000000..2dc833375 --- /dev/null +++ b/win/CS/HandBrake.Interop/Interop/Json/Encode/Mp4Options.cs @@ -0,0 +1,27 @@ +// -------------------------------------------------------------------------------------------------------------------- +// <copyright file="Mp4Options.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 mp 4 options. +// </summary> +// -------------------------------------------------------------------------------------------------------------------- + +namespace HandBrake.Interop.Interop.Json.Encode +{ + /// <summary> + /// The mp 4 options. + /// </summary> + public class Mp4Options + { + /// <summary> + /// Gets or sets a value indicating whether ipod atom. + /// </summary> + public bool IpodAtom { get; set; } + + /// <summary> + /// Gets or sets a value indicating whether mp 4 optimize. + /// </summary> + public bool Mp4Optimize { get; set; } + } +}
\ No newline at end of file |