summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Limits.cs
blob: 9fdc373f5bd568687a95e8a9bdc6a878c6f9c834 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

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

		public int High { get; set; }
	}
}