X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=win%2FC%23%2Finterop%2FModel%2FEncoding%2FOutputFormat.cs;fp=win%2FC%23%2Finterop%2FModel%2FEncoding%2FOutputFormat.cs;h=52549e7631448b5f7867791aca9f11e0ee9d9161;hb=736ce2deba7db0b7f3d5f44e638e0d31de975730;hp=0000000000000000000000000000000000000000;hpb=57c0057e6e20056df7fbd68694a34e603f9f11bd;p=handbrake-jp%2Fhandbrake-jp.git diff --git a/win/C#/interop/Model/Encoding/OutputFormat.cs b/win/C#/interop/Model/Encoding/OutputFormat.cs new file mode 100644 index 0000000..52549e7 --- /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 + } +}