namespace AsterNET.Manager.Event
{
///
/// A DBGetResponseEvent is sent in response to a DBGetAction and contains the entry that was queried.
/// Available since Asterisk 1.2
///
///
public class DBGetResponseEvent : ResponseEvent
{
public DBGetResponseEvent(ManagerConnection source)
: base(source)
{
}
///
/// Get/Set the family of the database entry that was queried.
///
public string Family { get; set; }
///
/// Get/Set the key of the database entry that was queried.
///
public string Key { get; set; }
///
/// Get/Set the value of the database entry that was queried.
///
public string Val { get; set; }
}
}