using System; namespace CC_Functions.Commandline.TUI { /// /// Arguments containing input data /// public class InputEventArgs : EventArgs { private readonly ConsoleKeyInfo _info; /// /// The inputs data /// public ConsoleKeyInfo Info => _info; /// /// Generates new arguments /// /// The input data public InputEventArgs(ConsoleKeyInfo info) => _info = info; } }