moel@63: /* moel@63: moel@344: This Source Code Form is subject to the terms of the Mozilla Public moel@344: License, v. 2.0. If a copy of the MPL was not distributed with this moel@344: file, You can obtain one at http://mozilla.org/MPL/2.0/. moel@63: moel@344: Copyright (C) 2009-2010 Michael Möller moel@344: moel@63: */ moel@63: moel@63: namespace OpenHardwareMonitor.Hardware { moel@63: moel@110: public interface IParameter : IElement { moel@63: moel@63: ISensor Sensor { get; } moel@109: Identifier Identifier { get; } moel@63: moel@63: string Name { get; } moel@63: string Description { get; } moel@63: float Value { get; set; } moel@63: float DefaultValue { get; } moel@63: bool IsDefault { get; set; } moel@63: } moel@63: }