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