namespace AsterNET.Manager.Action
{
///
///
public class DBDelTreeAction : ManagerAction
{
///
/// Creates a new empty DBDelTreeAction.
///
public DBDelTreeAction()
{
}
///
/// Creates a new DBDelTreeAction that deletes the database true
/// with the given key in the given family.
///
/// the family of the key
/// the key of the entry to retrieve
public DBDelTreeAction(string family, string key)
{
Family = family;
Key = key;
}
public override string Action
{
get { return "DBDelTree"; }
}
///
/// Get/Set the the Family of the entry to delete.
///
public string Family { get; set; }
///
/// Get/Set the the key of the entry to delete.
///
public string Key { get; set; }
}
}