namespace AsterNET.Manager.Event { /// /// A QueueMemberPenaltyEvent is triggered when a queue member is assigned a new penalty. /// public class QueueMemberPenaltyEvent : AbstractQueueMemberEvent { private int penalty; /// /// Get/Set the penalty for the queue location. /// public int Penalty { get { return this.penalty; } set { this.penalty = value; } } public QueueMemberPenaltyEvent(ManagerConnection source) : base(source) { } } }