Flow.Launcher/Flow.Launcher.Infrastructure/KeyConstant.cs
2020-05-03 23:36:23 +02:00

9 lines
No EOL
240 B
C#

namespace Flow.Launcher.Infrastructure
{
public static class KeyConstant
{
public const string Ctrl = nameof(Ctrl);
public const string Alt = nameof(Alt);
public const string Space = nameof(Space);
}
}