// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The range limits. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.Interop.Model { /// /// The range limits. /// public class RangeLimits { #region Properties /// /// Gets or sets a value indicating whether ascending. /// public bool Ascending { get; set; } /// /// Gets or sets the granularity. /// public float Granularity { get; set; } /// /// Gets or sets the high. /// public float High { get; set; } /// /// Gets or sets the low. /// public float Low { get; set; } #endregion } }