Files
StructureHelper/Infrastructure/EventArgs.cs
Nikolai Smirnov 2c4df04c5c Refactoring WIP
2022-07-08 11:38:25 +05:00

14 lines
243 B
C#

using System;
namespace StructureHelper.Infrastructure
{
public class EventArgs<T> : EventArgs
{
public EventArgs(T value)
{
Value = value;
}
public T Value { get; private set; }
}
}