Add files via upload

This commit is contained in:
Netch
2021-06-15 21:44:03 +08:00
commit 334c9ba7a7
83 changed files with 3785 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace Netch.Controllers.Interface
{
public interface IController
{
bool Create(Models.Server.Server s, Models.Mode.Mode m);
bool Delete();
}
}