mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-21 09:45:48 +08:00
28 lines
808 B
C#
28 lines
808 B
C#
// 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
|
|
{
|
|
/// <summary>
|
|
/// The event arguments passed when a HotKeySet's OnHotKeysDownHold event is triggered.
|
|
/// </summary>
|
|
public sealed class HotKeyArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Creates an instance of the HotKeyArgs.
|
|
/// <param name="triggeredAt">Time when the event was triggered</param>
|
|
/// </summary>
|
|
public HotKeyArgs(DateTime triggeredAt)
|
|
{
|
|
Time = triggeredAt;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Time when the event was triggered
|
|
/// </summary>
|
|
public DateTime Time { get; }
|
|
}
|
|
} |