summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Model/AdvancedChoice.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2019-01-12 19:41:52 +0000
committersr55 <[email protected]>2019-01-12 19:41:52 +0000
commit5a4ccc3a37e631ddb9ebe51ebd69c245949e1796 (patch)
tree545dcd8bc15dda97f9ffc67d69c260ebd0b9561e /win/CS/HandBrakeWPF/Model/AdvancedChoice.cs
parent217e9bb5b3158086eb7481ef510cad27a7ddb7c3 (diff)
WinGui: Strip out some legacy code for x264 options handling.
Diffstat (limited to 'win/CS/HandBrakeWPF/Model/AdvancedChoice.cs')
-rw-r--r--win/CS/HandBrakeWPF/Model/AdvancedChoice.cs32
1 files changed, 0 insertions, 32 deletions
diff --git a/win/CS/HandBrakeWPF/Model/AdvancedChoice.cs b/win/CS/HandBrakeWPF/Model/AdvancedChoice.cs
deleted file mode 100644
index 53c43f5c2..000000000
--- a/win/CS/HandBrakeWPF/Model/AdvancedChoice.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-// --------------------------------------------------------------------------------------------------------------------
-// <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; }
- }
-}