Init commit
This commit is contained in:
13
Infrastructure/EventArgs.cs
Normal file
13
Infrastructure/EventArgs.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace StructureHelper
|
||||
{
|
||||
public class EventArgs<T> : EventArgs
|
||||
{
|
||||
public EventArgs(T value)
|
||||
{
|
||||
Value = value;
|
||||
}
|
||||
public T Value { get; private set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user