Files
Wino-Mail/Wino.Core.Domain/Interfaces/IKeyPressService.cs

9 lines
162 B
C#
Raw Normal View History

2024-04-18 01:44:37 +02:00
namespace Wino.Core.Domain.Interfaces
{
public interface IKeyPressService
{
bool IsCtrlKeyPressed();
bool IsShiftKeyPressed();
}
}