Files
netch/Netch/Controllers/Other/Web/PrivoxyController.cs
2021-07-10 14:16:34 +08:00

18 lines
387 B
C#

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();
}
}
}