21 lines
453 B
C#
21 lines
453 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace LANCommander.SDK.PowerShell
|
|||
|
{
|
|||
|
public class PowerShellArgument
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public object Value { get; set; }
|
|||
|
public Type Type { get; set; }
|
|||
|
|
|||
|
public PowerShellArgument(string name, object value, Type type)
|
|||
|
{
|
|||
|
Name = name;
|
|||
|
Value = value;
|
|||
|
Type = type;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|