mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-01 13:55:08 +00:00
14 lines
252 B
C#
14 lines
252 B
C#
namespace ICD.Common.Utils.EventArguments
|
|
{
|
|
public sealed class IntEventArgs : GenericEventArgs<int>
|
|
{
|
|
/// <summary>
|
|
/// Constructor.
|
|
/// </summary>
|
|
/// <param name="data"></param>
|
|
public IntEventArgs(int data) : base(data)
|
|
{
|
|
}
|
|
}
|
|
}
|