mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
18 lines
381 B
C#
18 lines
381 B
C#
using System;
|
|
|
|
namespace Netch.Controllers.Server
|
|
{
|
|
public class HTTPController : Interface.IController
|
|
{
|
|
public bool Create(Models.Server.Server s, Models.Mode.Mode m)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool Delete()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|