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

41 lines
770 B
C#

using System;
using System.Management.Automation;
namespace DSInternals.PowerShell.Commands
{
[Cmdlet(VerbsData.Restore, "ADDBAttribute")]
[OutputType("None")]
public class RestoreADDBAttributeCommand : ADDBObjectCommandBase
{
public string[] Property
{
get;
set;
}
public int VerInc
{
get;
set;
}
public SwitchParameter SubTree
{
get;
set;
}
protected override bool ReadOnly
{
get
{
return false;
}
}
protected override void ProcessRecord()
{
throw new NotImplementedException();
}
}
}