DSInternals/Src/DSInternals.PowerShell/Commands/Datastore/GetADDBIndexCommand.cs
2016-07-03 17:36:40 +02:00

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();
}
}
}