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

17 lines
379 B
C#

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