Add files via upload

This commit is contained in:
Netch
2021-07-10 14:16:34 +08:00
parent e812edef95
commit 0634e5718d
38 changed files with 279 additions and 46 deletions

View File

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