diff --git a/ICD.Common.Utils/EventArguments/GenericEventArgs.cs b/ICD.Common.Utils/EventArguments/GenericEventArgs.cs index 467251f..895a067 100644 --- a/ICD.Common.Utils/EventArguments/GenericEventArgs.cs +++ b/ICD.Common.Utils/EventArguments/GenericEventArgs.cs @@ -2,7 +2,7 @@ namespace ICD.Common.Utils.EventArguments { - public abstract class GenericEventArgs : EventArgs + public class GenericEventArgs : EventArgs { public T Data { get; private set; } @@ -10,7 +10,7 @@ namespace ICD.Common.Utils.EventArguments /// Constructor. /// /// - protected GenericEventArgs(T data) + public GenericEventArgs(T data) { Data = data; }