summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/OutputFormat.cs
blob: 741abcb0dcf12d96e951ca9cba4df8e0008315cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace HandBrake.Interop
{
	using System.ComponentModel.DataAnnotations;

	public enum OutputFormat
	{
		[Display(Name = "MP4")]
		Mp4,
		[Display(Name = "MKV")]
		Mkv
	}
}