blob: 2862574dcdc748dddff9308001d6a6253ac91591 (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <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>
// --------------------------------------------------------------------------------------------------------------------
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; }
}
}
|