summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/HBContainer.cs
blob: 1360060754b8beac444fee28570bc744dd1c5387 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace HandBrake.Interop.Model.Encoding
{
	public class HBContainer
	{
		public string ShortName { get; set; }

		public string DisplayName { get; set; }

		public string DefaultExtension { get; set; }

		public int Id { get; set; }
	}
}