Add LSPController

This commit is contained in:
Netch
2021-06-21 01:49:06 +08:00
parent f4cf5267dd
commit 866e35c83b

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Netch.Controllers.Mode
{
public class LSPController : Interface.IController
{
public bool Create(Models.Server.Server s, Models.Mode.Mode m)
{
throw new NotImplementedException();
}
public bool Delete()
{
throw new NotImplementedException();
}
}
}