mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-04-23 15:36:18 +00:00
16 lines
384 B
C#
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();
|
|
}
|
|
}
|
|
} |