mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
22 lines
490 B
C#
22 lines
490 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Netch.Controllers.Mode
|
|
{
|
|
public class WinDivertController : Interface.IController
|
|
{
|
|
public bool Create(Models.Server.Server s, Models.Mode.Mode m)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool Delete()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|