19 lines
322 B
C#
19 lines
322 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace CaeGlobals
|
|||
|
|
{
|
|||
|
|
public class EventArgs<T> : EventArgs
|
|||
|
|
{
|
|||
|
|
public T Value { get; private set; }
|
|||
|
|
|
|||
|
|
public EventArgs(T val)
|
|||
|
|
{
|
|||
|
|
Value = val;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|