DSInternals/Src/DSInternals.PowerShell/Commands/Datastore/GetADDBObjectCommand.cs
2016-07-03 17:36:40 +02: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();
}
}
}