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