// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The mp 4 options. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Encode { /// /// The mp 4 options. /// public class Mp4Options { /// /// Gets or sets a value indicating whether ipod atom. /// public bool IpodAtom { get; set; } /// /// Gets or sets a value indicating whether mp 4 optimize. /// public bool Mp4Optimize { get; set; } } }