Rename controllers

This commit is contained in:
Netch
2021-06-21 01:49:01 +08:00
parent 334c9ba7a7
commit f4cf5267dd
7 changed files with 12 additions and 12 deletions

View File

@@ -0,0 +1,15 @@
namespace Netch.Controllers.Server
{
public class VLessController : Interface.IController
{
public bool Create(Models.Server.Server s, Models.Mode.Mode m)
{
throw new System.NotImplementedException();
}
public bool Delete()
{
throw new System.NotImplementedException();
}
}
}