using System;
using Asterisk.NET.Manager.Response;
namespace Asterisk.NET.Manager.Action
{
///
/// The ManagerActionResponse is implemented by ManagerActions that
/// return their result in a custom ManagerResponse
/// The response type that indicates that Asterisk is finished is returned by the
/// ActionCompleteResponseClass property.
///
///
public abstract class ManagerActionResponse : ManagerAction
{
///
/// Returns the response type that indicates that Asterisk is finished sending response for this action.
///
///
public abstract object ActionCompleteResponseClass();
}
}