Files
ICD.Common.Utils/ICD.Common.Utils/EventArguments/IGenericEventArgs.cs
2020-06-03 16:14:43 -04:00

19 lines
378 B
C#

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