Flow.Launcher/Flow.Launcher.Infrastructure/KeyConstant.cs

9 lines
240 B
C#
Raw Permalink Normal View History

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);
}
}