mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-24 17:18:00 +08:00
18 lines
521 B
C#
18 lines
521 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.Text.Json.Serialization;
|
|||
|
|
|||
|
namespace Microsoft.PowerToys.Settings.UI.Lib
|
|||
|
{
|
|||
|
public class KeysDataModel
|
|||
|
{
|
|||
|
[JsonPropertyName("originalKeys")]
|
|||
|
public string OriginalKeys { get; set; }
|
|||
|
|
|||
|
[JsonPropertyName("newRemapKeys")]
|
|||
|
public string NewRemapKeys { get; set; }
|
|||
|
}
|
|||
|
}
|