2
0
mirror of https://github.com/hirschmann/nbfc synced 2025-09-05 00:25:21 +00:00
Files
nbfc/Libraries/StagWare.Configurations/IFanControlConfig.cs
Stefan Hirschmann cfceef78ca [fix] Fixed MinOSVersion for Linux plugins.
[new] Implemented EmbeddedController plugin for Linux.
[chg] Removed unnecessary usings from StagWare.Configurations.
[chg] Fixed path to Linux plugins project in solution file.
2014-08-29 02:24:13 +02:00

12 lines
257 B
C#

using System;
namespace StagWare.FanControl.Configurations
{
public interface IFanControlConfig : ICloneable
{
string NotebookModel { get; set; }
int EcPollInterval { get; set; }
bool ReadWriteWords { get; set; }
}
}