8 lines
224 B
C#
8 lines
224 B
C#
using FileTime.App.Core.Models;
|
|
|
|
namespace FileTime.ConsoleUI.App.KeyInputHandling;
|
|
|
|
public interface IKeyInputHandlerService
|
|
{
|
|
void HandleKeyInput(GeneralKeyEventArgs keyEvent, SpecialKeysStatus specialKeysStatus);
|
|
} |