//
// MainLoop.cs: IMainLoopDriver and MainLoop for Terminal.Gui
//
// Authors:
// Miguel de Icaza (miguel@gnome.org)
//
using System;
namespace Terminal.Gui;
///
/// Provides data for timers running manipulation.
///
public sealed class Timeout {
///
/// Time to wait before invoke the callback.
///
public TimeSpan Span;
///
/// The function that will be invoked.
///
public Func Callback;
}