mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 03:57:32 +00:00
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
166a6bd61c
1 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace ICD.Common.Utils.EventArguments
|
||||
{
|
||||
public abstract class GenericEventArgs<T> : EventArgs
|
||||
public class GenericEventArgs<T> : EventArgs
|
||||
{
|
||||
public T Data { get; private set; }
|
||||
|
||||
|
|
@ -10,7 +10,7 @@ namespace ICD.Common.Utils.EventArguments
|
|||
/// Constructor.
|
||||
/// </summary>
|
||||
/// <param name="data"></param>
|
||||
protected GenericEventArgs(T data)
|
||||
public GenericEventArgs(T data)
|
||||
{
|
||||
Data = data;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue