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