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