summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/Model/BitrateLimits.cs
blob: 8e6a49582e2340e04f846a6e4656554c553b5982 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="BitrateLimits.cs" company="HandBrake Project (http://handbrake.fr)">
//   This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

namespace HandBrake.Interop.Model
{
	public class BitrateLimits
	{
		public int Low { get; set; }

		public int High { get; set; }
	}
}