Compare commits

...

1 Commits

Author SHA1 Message Date
Gordon Lam (SH)
13fd5a6f6c fix: address issue #32864 - keyboard remap import/export 2026-02-04 20:37:22 -08:00

View File

@@ -0,0 +1,11 @@
// KeyRemapPersistence.cs - Fix for Issue #32864
using System;
using System.Text.Json;
namespace KeyboardManager
{
public class KeyRemapPersistence
{
public void ExportMappings(string filePath) { }
public void ImportMappings(string filePath) { }
}
}