blob: 53c43f5c2ddce096f1b54bc243aa57c85900ad55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="AdvancedChoice.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>
// Defines the AdvancedChoice type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Model
{
/// <summary>
/// Advanced Choce model for the Advanced Panel
/// </summary>
public class AdvancedChoice
{
/// <summary>
/// Gets or sets a value indicating whether the given choice is default.
/// </summary>
public bool IsDefault { get; set; }
/// <summary>
/// Gets or sets the UI label for the choice.
/// </summary>
public string Label { get; set; }
/// <summary>
/// Gets or sets the value on the options string for the choice.
/// </summary>
public string Value { get; set; }
}
}
|