asternet/Asterisk.2013/Asterisk.NET/Manager/Event/AbstractAgentEvent.cs
2015-01-03 15:37:29 +00:00

28 lines
792 B
C#

namespace AsterNET.Manager.Event
{
/// <summary>
/// Abstract base class for several agent related events.
/// </summary>
public abstract class AbstractAgentEvent : AbstractAgentVariables
{
public AbstractAgentEvent(ManagerConnection source)
: base(source)
{
}
/// <summary>
/// Get/Set the name of the queue.
/// </summary>
public string Queue { get; set; }
/// <summary>
/// Get/Set the name of the member's interface.
/// </summary>
public string Member { get; set; }
/// <summary>
/// Get/Set the name of the member's interface.
/// </summary>
public string MemberName { get; set; }
}
}