summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/HBRate.cs
blob: b8dfabbc374957e9d1aae943f55f514a93679d17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="HBRate.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>
// <summary>
//   Represents a rate in HandBrake: audio sample rate or video framerate.
// </summary>
// --------------------------------------------------------------------------------------------------------------------

namespace HandBrake.Interop.Model.Encoding
{
	/// <summary>
	/// Represents a rate in HandBrake: audio sample rate or video framerate.
	/// </summary>
	public class HBRate
	{
		/// <summary>
		/// Gets or sets the name to use for this rate.
		/// </summary>
		public string Name { get; set; }

		/// <summary>
		/// Gets or sets the raw rate.
		/// </summary>
		public int Rate { get; set; }
	}
}