Files
linker/cmonitor/client/reports/light/ILight.cs

9 lines
149 B
C#

namespace cmonitor.client.reports.light
{
public interface ILight
{
public int Get();
public void Set(int value);
}
}