mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-13 19:55:02 +00:00
11 lines
200 B
C#
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; }
|
|
}
|
|
}
|