using System;
namespace Terminal.Gui {
///
/// Event arguments for the event.
///
public class KeystrokeNavigatorEventArgs : EventArgs {
///
/// he current .
///
public string SearchString { get; }
///
/// Initializes a new instance of
///
/// The current .
public KeystrokeNavigatorEventArgs (string searchString)
{
SearchString = searchString;
}
}
}