mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-14 04:58:33 +00:00
18 lines
299 B
C#
18 lines
299 B
C#
using System;
|
|
|
|
namespace ICD.Common.Utils.EventArguments
|
|
{
|
|
public class GenericEventArgs<T> : EventArgs
|
|
{
|
|
public T Data { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Constructor.
|
|
/// </summary>
|
|
/// <param name="data"></param>
|
|
public GenericEventArgs(T data)
|
|
{
|
|
Data = data;
|
|
}
|
|
}
|
|
}
|