Files
archived-g-helper/app/NvAPIWrapper/Native/Interfaces/GPU/IThermalSettings.cs
2023-05-06 14:40:52 +02:00

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; }
}
}