mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-16 13:15:07 +00:00
Created S# .sln and moved project to src folder
This commit is contained in:
18
ICD.Common/EventArguments/GenericEventArgs.cs
Normal file
18
ICD.Common/EventArguments/GenericEventArgs.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
|
||||
namespace ICD.Common.EventArguments
|
||||
{
|
||||
public abstract class GenericEventArgs<T> : EventArgs
|
||||
{
|
||||
public T Data { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Constructor.
|
||||
/// </summary>
|
||||
/// <param name="data"></param>
|
||||
protected GenericEventArgs(T data)
|
||||
{
|
||||
Data = data;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user