// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the AdvancedChoice type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.Model { /// /// Advanced Choce model for the Advanced Panel /// public class AdvancedChoice { /// /// Gets or sets a value indicating whether the given choice is default. /// public bool IsDefault { get; set; } /// /// Gets or sets the UI label for the choice. /// public string Label { get; set; } /// /// Gets or sets the value on the options string for the choice. /// public string Value { get; set; } } }