namespace NvAPIWrapper.Native.Interfaces.GPU { /// /// Holds information about a utilization domain /// public interface IUtilizationDomainInfo { /// /// Gets a boolean value that indicates if this utilization domain is present on this GPU. /// bool IsPresent { get; } /// /// Gets the percentage of time where the domain is considered busy in the last 1 second interval. /// uint Percentage { get; } } }