Files
linker/cmonitor/web/IWebServer.cs

15 lines
223 B
C#

namespace cmonitor.web
{
/// <summary>
/// web服务
/// </summary>
public interface IWebServer
{
/// <summary>
/// 开始
/// </summary>
public void Start();
}
}