mirror of https://github.com/quasar/Quasar.git
33 lines
953 B
C#
33 lines
953 B
C#
|
// This code is distributed under MIT license.
|
|||
|
// Copyright (c) 2015 George Mamaladze
|
|||
|
// See license.txt or http://opensource.org/licenses/mit-license.php
|
|||
|
|
|||
|
using System;
|
|||
|
|
|||
|
namespace xClient.Core.Keylogger.HotKeys
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// The event arguments passed when a HotKeySet's OnHotKeysDownHold event is triggered.
|
|||
|
/// </summary>
|
|||
|
public sealed class HotKeyArgs : EventArgs
|
|||
|
{
|
|||
|
private readonly DateTime m_TimeOfExecution;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Creates an instance of the HotKeyArgs.
|
|||
|
/// <param name="triggeredAt">Time when the event was triggered</param>
|
|||
|
/// </summary>
|
|||
|
public HotKeyArgs(DateTime triggeredAt)
|
|||
|
{
|
|||
|
m_TimeOfExecution = triggeredAt;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Time when the event was triggered
|
|||
|
/// </summary>
|
|||
|
public DateTime Time
|
|||
|
{
|
|||
|
get { return m_TimeOfExecution; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|