mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
13 lines
337 B
C#
13 lines
337 B
C#
namespace NvAPIWrapper.Native.Interfaces.GPU
|
|
{
|
|
/// <summary>
|
|
/// Holds a list of thermal sensors
|
|
/// </summary>
|
|
public interface IThermalSettings
|
|
{
|
|
/// <summary>
|
|
/// Gets a list of requested thermal sensor information
|
|
/// </summary>
|
|
IThermalSensor[] Sensors { get; }
|
|
}
|
|
} |