mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-01-11 19:44:55 +00:00
17 lines
301 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|