LANCommander/LANCommander.SDK/PowerShell/PowerShellFactory.cs

15 lines
281 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace LANCommander.SDK.PowerShell
{
public static class PowerShellFactory
{
public static PowerShellScript RunScript()
{
return new PowerShellScript();
}
}
}