Files
Wino-Mail/Wino.Core.Domain/Interfaces/IKeyPressService.cs
2025-02-16 11:54:23 +01:00

8 lines
140 B
C#

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