using System; namespace AsterNET.Manager.Action { /// /// /// public class DBDelTreeAction : ManagerAction { private string family; private string key; public override string Action { get { return "DBDelTree"; } } /// /// Get/Set the the Family of the entry to delete. /// public string Family { get { return family; } set { this.family = value; } } /// /// Get/Set the the key of the entry to delete. /// public string Key { get { return key; } set { this.key = value; } } /// /// 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) { this.family = family; this.key = key; } } }