mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-08 17:24:49 +00:00
19 lines
305 B
C#
19 lines
305 B
C#
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;
|
|
}
|
|
}
|
|
}
|