using ICD.Common.Properties; namespace ICD.Common.EventArguments { [PublicAPI] public sealed class UShortEventArgs : GenericEventArgs { /// /// Constructor. /// /// public UShortEventArgs(ushort data) : base(data) { } } }