Files
archived-g-helper/app/NvAPIWrapper/DRS/SettingValues/BatteryBoost.cs
2023-05-06 14:40:52 +02:00

17 lines
277 B
C#

namespace NvAPIWrapper.DRS.SettingValues
{
#pragma warning disable 1591
public enum BatteryBoost : uint
{
Minimum = 0x1,
Maximum = 0xFF,
Enabled = 0x10000000,
Disabled = 0x0,
Default = 0x0
}
#pragma warning restore 1591
}