Files
ICD.Common.Utils/ICD.Common.Utils/EventArguments/IGenericEventArgs.cs

11 lines
200 B
C#

namespace ICD.Common.Utils.EventArguments
{
public interface IGenericEventArgs<T>
{
/// <summary>
/// Gets the wrapped data associated with the event.
/// </summary>
T Data { get; }
}
}