namespace AsterNET.Manager.Event { /// /// Abstract base class for several queue member related events. /// public abstract class AbstractQueueMemberEvent : ManagerEvent { private string queue; private string location; /// /// Returns the name of the queue. /// public string Queue { get { return queue; } set { this.queue = value; } } /// /// Returns the name of the member's interface.
/// E.g. the channel name or agent group. ///
public string Location { get { return location; } set { this.location = value; } } public AbstractQueueMemberEvent(ManagerConnection source) : base(source) { } } }