summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Services/Encode/Model/Models/OutputFormat.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/Encode/Model/Models/OutputFormat.cs')
-rw-r--r--win/CS/HandBrakeWPF/Services/Encode/Model/Models/OutputFormat.cs11
1 files changed, 3 insertions, 8 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Encode/Model/Models/OutputFormat.cs b/win/CS/HandBrakeWPF/Services/Encode/Model/Models/OutputFormat.cs
index d7e382b06..fee3236ec 100644
--- a/win/CS/HandBrakeWPF/Services/Encode/Model/Models/OutputFormat.cs
+++ b/win/CS/HandBrakeWPF/Services/Encode/Model/Models/OutputFormat.cs
@@ -9,23 +9,18 @@
namespace HandBrakeWPF.Services.Encode.Model.Models
{
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
-
using HandBrake.ApplicationServices.Attributes;
-
+
/// <summary>
/// The Output format.
/// </summary>
public enum OutputFormat
{
- [Description("MP4")]
- [Display(Name = "MP4")]
+ [DisplayName("MP4")]
[ShortName("av_mp4")]
Mp4 = 0,
- [Description("MKV")]
- [Display(Name = "MKV")]
+ [DisplayName("MKV")]
[ShortName("av_mkv")]
Mkv,
}