mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-04-11 03:31:59 +00:00
16 lines
376 B
C#
16 lines
376 B
C#
using System;
|
|
using System.Management.Automation;
|
|
|
|
namespace DSInternals.PowerShell.Commands
|
|
{
|
|
[Cmdlet(VerbsCommon.Get, "ADDBIndex")]
|
|
// TODO: output type
|
|
[OutputType("None")]
|
|
public class GetADDBIndexCommand : ADDBCommandBase
|
|
{
|
|
protected override void ProcessRecord()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |