summaryrefslogtreecommitdiffstats
path: root/win/C#/interop/Model/Encoding/OutputFormat.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/C#/interop/Model/Encoding/OutputFormat.cs')
-rw-r--r--win/C#/interop/Model/Encoding/OutputFormat.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/win/C#/interop/Model/Encoding/OutputFormat.cs b/win/C#/interop/Model/Encoding/OutputFormat.cs
new file mode 100644
index 000000000..52549e763
--- /dev/null
+++ b/win/C#/interop/Model/Encoding/OutputFormat.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.ComponentModel;
+
+namespace HandBrake.Interop
+{
+ public enum OutputFormat
+ {
+ [DisplayString("MP4")]
+ Mp4,
+ [DisplayString("MKV")]
+ Mkv
+ }
+}