This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
CC-Functions/Commandline/TUI/InputEventArgs.cs

12 lines
274 B
C#
Raw Normal View History

using System;
namespace CC_Functions.Commandline.TUI
{
public class InputEventArgs : EventArgs
{
private readonly ConsoleKeyInfo _info;
public ConsoleKeyInfo Info => _info;
public InputEventArgs(ConsoleKeyInfo info) => _info = info;
}
}