Files
Wino-Mail/Wino.Core.Domain/Interfaces/IKeyPressService.cs
Burak Kaan Köse 12d3814626 Initial commit.
2024-04-18 01:44:37 +02:00

9 lines
162 B
C#

namespace Wino.Core.Domain.Interfaces
{
public interface IKeyPressService
{
bool IsCtrlKeyPressed();
bool IsShiftKeyPressed();
}
}