mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-22 17:09:28 +00:00
Adding back in key for FZ Json (#5210)
* Adding back in key for FZ Json * defaulting key to string empty Co-authored-by: Clint Rutkas <crutkas@microsoft.com>
This commit is contained in:
parent
983ff901f2
commit
beb4494534
@ -56,6 +56,11 @@ namespace Microsoft.PowerToys.Settings.UI.Lib
|
||||
[JsonPropertyName("code")]
|
||||
public int Code { get; set; }
|
||||
|
||||
// This is currently needed for FancyZones, we need to unify these two objects
|
||||
// see src\common\settings_objects.h
|
||||
[JsonPropertyName("key")]
|
||||
public string Key { get; set; } = string.Empty;
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
StringBuilder output = new StringBuilder();
|
||||
|
Loading…
Reference in New Issue
Block a user