// -------------------------------------------------------------------------------------------------------------------- // // 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 { /// /// The inclusive lower limit for the bitrate. /// public int Low { get; set; } /// /// The inclusive upper limit for the bitrate. /// public int High { get; set; } } }