using System;
namespace Asterisk.NET.Manager.Action
{
///
/// The LogoffAction causes the server to close the connection.
///
public class LogoffAction : ManagerAction
{
///
/// Get the name of this action, i.e. "Logoff".
///
override public string Action
{
get { return "Logoff"; }
}
///
/// Creates a new LogoffAction.
///
public LogoffAction()
{
}
}
}