mirror of
https://github.com/snltty/linker.git
synced 2025-11-02 05:24:21 +08:00
18 lines
351 B
C#
18 lines
351 B
C#
namespace cmonitor.plugins.viewer.report
|
|
{
|
|
public sealed class ViewerLinux : IViewer
|
|
{
|
|
public void Open(bool value, ViewerMode mode)
|
|
{
|
|
}
|
|
public string GetConnectString()
|
|
{
|
|
return string.Empty;
|
|
}
|
|
public void SetConnectString(string connectStr)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|