netmonitor/NetMonitorServer/Actions/SetOpenVPNService.cs

16 lines
319 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NetMonitorServer
{
class SetOpenVPNService : ActionClass
{
internal override bool Run(Queue<string> arguments)
{
throw new NotImplementedException();
}
}
}