1 namespace OpenHardwareMonitor.WMIProvider {
2 interface IWmiClass {
3 string Name { get; }
4 string Identifier { get; }
5
6 void Update();
7 }
8 }