2013-01-18 15:55:50 +00:00
|
|
|
using System;
|
|
|
|
|
2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
|
|
|
public class QueueCallerAbandonEvent : ManagerEvent
|
|
|
|
{
|
|
|
|
private string queue;
|
|
|
|
private int position;
|
|
|
|
private int originalPosition;
|
|
|
|
private int holdTime;
|
|
|
|
|
|
|
|
public string Queue
|
|
|
|
{
|
|
|
|
get { return this.queue; }
|
|
|
|
set { this.queue = value; }
|
|
|
|
}
|
|
|
|
public int HoldTime
|
|
|
|
{
|
|
|
|
get { return this.holdTime; }
|
|
|
|
set { this.holdTime = value; }
|
|
|
|
}
|
|
|
|
public int Position
|
|
|
|
{
|
|
|
|
get { return this.position; }
|
|
|
|
set { this.position = value; }
|
|
|
|
}
|
|
|
|
public int OriginalPosition
|
|
|
|
{
|
|
|
|
get { return this.originalPosition; }
|
|
|
|
set { this.originalPosition = value; }
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
|
|
/// Creates a new DNDStateEvent.
|
|
|
|
/// </summary>
|
|
|
|
public QueueCallerAbandonEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|