DSInternals/Src/DSInternals.PowerShell/Commands/Datastore/DisableADDBAccountCommand.cs

18 lines
396 B
C#

using System;
using System.Management.Automation;
namespace DSInternals.PowerShell.Commands
{
[Cmdlet(VerbsLifecycle.Disable, "ADDBAccount")]
[OutputType("None")]
public class DisableADDBAccountCommand : ADDBAccountStatusCommandBase
{
protected override bool Enabled
{
get
{
return false;
}
}
}
}