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