using System;
using static Terminal.Gui.MainLoop;
namespace Terminal.Gui {
///
/// for timeout events (e.g. )
///
public class TimeoutEventArgs : EventArgs {
///
/// Gets the timeout callback handler
///
public Timeout Timeout { get; }
///
/// Gets the in UTC time when the
/// will next execute after.
///
public long Ticks { get; }
///
/// Creates a new instance of the class.
///
///
///
public TimeoutEventArgs (Timeout timeout, long ticks)
{
Timeout = timeout;
Ticks = ticks;
}
}
}