mirror of
https://github.com/hirschmann/nbfc
synced 2025-09-05 00:25:21 +00:00
[new] Implemented EmbeddedController plugin for Linux. [chg] Removed unnecessary usings from StagWare.Configurations. [chg] Fixed path to Linux plugins project in solution file.
12 lines
257 B
C#
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; }
|
|
}
|
|
}
|