using NvAPIWrapper.Native.GPU; namespace NvAPIWrapper.Native.Interfaces.GPU { /// /// Holds information regarding a clock domain of a performance state /// public interface IPerformanceStatesClock { /// /// Gets the clock domain identification /// PublicClockDomain DomainId { get; } /// /// Gets the clock frequency in kHz /// uint Frequency { get; } } }