14 lines
228 B
C#
14 lines
228 B
C#
using System;
|
|
|
|
namespace StructureHelper
|
|
{
|
|
public class EventArgs<T> : EventArgs
|
|
{
|
|
public EventArgs(T value)
|
|
{
|
|
Value = value;
|
|
}
|
|
public T Value { get; private set; }
|
|
}
|
|
}
|