using System;
namespace Core.Common.Utils.Events
{
///
/// Event arguments with a particular value.
///
/// Type of the attached class instance.
public class EventArgs : EventArgs
{
///
/// Initializes a new instance of the class.
///
/// The attached instance.
public EventArgs(T t)
{
Value = t;
}
///
/// Gets or sets the attached instance.
///
public T Value { get; private set; }
}
}