DSInternals/Src/DSInternals.PowerShell/Commands/GetADDBObjectCommand.cs
2015-12-26 23:44:43 +01:00

16 lines
384 B
C#

using System;
using System.Management.Automation;
namespace DSInternals.PowerShell.Commands
{
[Cmdlet(VerbsCommon.Get, "ADDBObject")]
// TODO: output type
[OutputType("None")]
public class GetADDBObjectCommand : ADDBObjectCommandBase
{
protected override void ProcessRecord()
{
throw new NotImplementedException();
}
}
}