mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 12:07:05 +00:00
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
166a6bd61c
1 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
namespace ICD.Common.Utils.EventArguments
|
namespace ICD.Common.Utils.EventArguments
|
||||||
{
|
{
|
||||||
public abstract class GenericEventArgs<T> : EventArgs
|
public class GenericEventArgs<T> : EventArgs
|
||||||
{
|
{
|
||||||
public T Data { get; private set; }
|
public T Data { get; private set; }
|
||||||
|
|
||||||
|
|
@ -10,7 +10,7 @@ namespace ICD.Common.Utils.EventArguments
|
||||||
/// Constructor.
|
/// Constructor.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="data"></param>
|
/// <param name="data"></param>
|
||||||
protected GenericEventArgs(T data)
|
public GenericEventArgs(T data)
|
||||||
{
|
{
|
||||||
Data = data;
|
Data = data;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue