Files
ICD.Common.Utils/ICD.Common/EventArguments/UShortEventArgs.cs
2017-06-21 22:41:54 -04:00

17 lines
301 B
C#

using ICD.Common.Properties;
namespace ICD.Common.EventArguments
{
[PublicAPI]
public sealed class UShortEventArgs : GenericEventArgs<ushort>
{
/// <summary>
/// Constructor.
/// </summary>
/// <param name="data"></param>
public UShortEventArgs(ushort data) : base(data)
{
}
}
}