namespace NvAPIWrapper.Native.Interfaces.Display { /// /// Holds the Digital Vibrance Control information regarding the saturation level. /// public interface IDisplayDVCInfo { /// /// Gets the current saturation level /// int CurrentLevel { get; } /// /// Gets the default saturation level /// int DefaultLevel { get; } /// /// Gets the maximum valid saturation level /// int MaximumLevel { get; } /// /// Gets the minimum valid saturation level /// int MinimumLevel { get; } } }