using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CaeGlobals { public class EventArgs : EventArgs { public T Value { get; private set; } public EventArgs(T val) { Value = val; } } }