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