mirror of
https://github.com/netchx/netch.git
synced 2026-03-16 17:53:17 +08:00
16 lines
419 B
C#
16 lines
419 B
C#
using System.Threading.Tasks;
|
|
using Netch.Models;
|
|
|
|
namespace Netch.Controllers
|
|
{
|
|
public abstract class ModeController : Controller
|
|
{
|
|
/// <summary>
|
|
/// 启动
|
|
/// </summary>
|
|
/// <param name="server">服务器</param>
|
|
/// <param name="mode">模式</param>
|
|
/// <returns>是否成功</returns>
|
|
public abstract bool Start(Server server, Mode mode);
|
|
}
|
|
} |