mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
* Load remapping config and data * display single key to shortcuts mapping properly * get remapping with operation type so we can display them in different tabs * clean up the xaml
22 lines
544 B
C#
22 lines
544 B
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KeyboardManagerEditorUI.Interop
|
|
{
|
|
public class KeyMapping
|
|
{
|
|
public int OriginalKey { get; set; }
|
|
|
|
public string TargetKey { get; set; } = string.Empty;
|
|
|
|
public bool IsShortcut { get; set; }
|
|
}
|
|
}
|