From de37a9b5609c54a30fc96c281c06fe472d0c0b40 Mon Sep 17 00:00:00 2001 From: Jack Kanarish Date: Mon, 5 Mar 2018 13:07:44 -0500 Subject: [PATCH] Make GenericEventArgs base class public --- ICD.Common.Utils/EventArguments/GenericEventArgs.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }