Fixed Inheritance Bug 3

This commit is contained in:
Deantwo 2017-12-22 14:11:33 +01:00 committed by GitHub
parent c4431787a1
commit 0949c1011e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,15 +6,10 @@ namespace AsterNET.Manager.Event
public class QueueMemberPenaltyEvent : AbstractQueueMemberEvent public class QueueMemberPenaltyEvent : AbstractQueueMemberEvent
{ {
/// <summary> /// <summary>
/// Get/Set the penalty for the queue location. /// Creates a new QueueMemberPenaltyEvent
/// </summary> /// </summary>
public new int Penalty { get; set; } /// <param name="source">ManagerConnection passed through in the event.</param>
public QueueMemberPenaltyEvent(ManagerConnection source)
/// <summary>
/// Creates a new QueueMemberPenaltyEvent
/// </summary>
/// <param name="source">ManagerConnection passed through in the event.</param>
public QueueMemberPenaltyEvent(ManagerConnection source)
: base(source) : base(source)
{ {
} }