mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 14:07:46 +08:00
13 lines
218 B
C#
13 lines
218 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace mRemoteNG.Config.KeyboardShortcuts
|
|
{
|
|
public enum ShortcutCommand
|
|
{
|
|
None = 0,
|
|
PreviousTab,
|
|
NextTab
|
|
}
|
|
} |