// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// Copyright (C) LibreHardwareMonitor and Contributors.
// All Rights Reserved.
namespace LibreHardwareMonitor.Hardware;
///
/// Abstract object that stores information about the limits of .
///
public interface ISensorLimits
{
///
/// Upper limit of value.
///
float? HighLimit { get; }
///
/// Lower limit of value.
///
float? LowLimit { get; }
}
///
/// Abstract object that stores information about the critical limits of .
///
public interface ICriticalSensorLimits
{
///
/// Critical upper limit of value.
///
float? CriticalHighLimit { get; }
///
/// Critical lower limit of value.
///
float? CriticalLowLimit { get; }
}