namespace AsterNET.Manager.Action
{
///
/// The ExtensionStateAction queries the state of an extension in a given context.
///
public class ExtensionStateAction : ManagerAction
{
#region Action
///
/// Get the name of this action, i.e. "ExtensionState".
///
public override string Action
{
get { return "ExtensionState"; }
}
#endregion
#region Exten
///
/// Get/Set the extension to query.
///
public string Exten { get; set; }
#endregion
#region Context
///
/// Get/Set the name of the context that contains the extension to query.
///
public string Context { get; set; }
#endregion
}
}