// This code is distributed under MIT license. // Copyright (c) 2015 George Mamaladze // See license.txt or https://mit-license.org/ using System; namespace Gma.System.MouseKeyHook.HotKeys { /// /// The event arguments passed when a HotKeySet's OnHotKeysDownHold event is triggered. /// public sealed class HotKeyArgs : EventArgs { /// /// Creates an instance of the HotKeyArgs. /// Time when the event was triggered /// public HotKeyArgs(DateTime triggeredAt) { Time = triggeredAt; } /// /// Time when the event was triggered /// public DateTime Time { get; } } }