// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The audio. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Encode { using System.Collections.Generic; /// /// The audio. /// public class Audio { /// /// Gets or sets the audio list. /// public List AudioList { get; set; } /// /// Gets or sets the copy mask. /// public uint[] CopyMask { get; set; } /// /// Gets or sets the fallback encoder. /// public int FallbackEncoder { get; set; } } }