// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Model.Encoding
{
///
/// Represents a rate in HandBrake: audio sample rate or video framerate.
///
public class HBRate
{
///
/// Gets or sets the name to use for this rate.
///
public string Name { get; set; }
///
/// Gets or sets the raw rate.
///
public int Rate { get; set; }
}
}