mirror of
https://github.com/snltty/linker.git
synced 2025-10-30 12:06:49 +08:00
16 lines
227 B
C#
16 lines
227 B
C#
namespace cmonitor.client.reports.light
|
|
{
|
|
public sealed class LightLinux : ILight
|
|
{
|
|
public int Get()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public void Set(int value)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|