// 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. // Partial Copyright (C) Michael Möller and Contributors. // All Rights Reserved. namespace LibreHardwareMonitor.Hardware; /// /// Abstract object that represents additional parameters included in . /// public interface IParameter : IElement { /// /// Gets a parameter default value defined by library. /// float DefaultValue { get; } /// /// Gets a parameter description defined by library. /// string Description { get; } /// /// Gets a unique parameter ID that represents its location. /// Identifier Identifier { get; } /// /// Gets or sets information whether the given is the default for . /// bool IsDefault { get; set; } /// /// Gets a parameter name defined by library. /// string Name { get; } /// /// Gets the sensor that is the data container for the given parameter. /// ISensor Sensor { get; } /// /// Gets or sets the current value. /// float Value { get; set; } }