// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the BitrateLimits type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Model { /// /// Represents bitrate limits as a range. /// public class BitrateLimits { /// /// Initializes a new instance of the class. /// /// /// The low. /// /// /// The high. /// public BitrateLimits(int low, int high) { this.Low = low; this.High = high; } /// /// Gets the inclusive lower limit for the bitrate. /// public int Low { get; private set; } /// /// Gets the inclusive upper limit for the bitrate. /// public int High { get; private set; } } }