// --------------------------------------------------------------------------------------------------------------------
//
// 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.ApplicationServices.Interop.Model
{
///
/// The range limits.
///
public class RangeLimits
{
///
/// Initializes a new instance of the class.
///
///
/// The ascending.
///
///
/// The granularity.
///
///
/// The high.
///
///
/// The low.
///
public RangeLimits(bool @ascending, float granularity, float high, float low)
{
this.Ascending = @ascending;
this.Granularity = granularity;
this.High = high;
this.Low = low;
}
///
/// Gets a value indicating whether ascending.
///
public bool Ascending { get; private set; }
///
/// Gets the granularity.
///
public float Granularity { get; private set; }
///
/// Gets the high.
///
public float High { get; private set; }
///
/// Gets the low.
///
public float Low { get; private set; }
}
}