// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the Limits type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.Interop.Model { public class Limits { public int Low { get; set; } public int High { get; set; } } }