namespace AsterNET.Manager.Action
{
///
///
public class DBDelAction : ManagerAction
{
///
/// Creates a new empty DBDelAction.
///
public DBDelAction()
{
}
///
/// Creates a new DBDelAction that deletes the value of the database entry
/// with the given key in the given family.
///
/// the family of the key
/// the key of the entry to retrieve
public DBDelAction(string family, string key)
{
Family = family;
Key = key;
}
public override string Action
{
get { return "DBDel"; }
}
///
/// 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; }
}
}