mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
12 lines
214 B
C#
12 lines
214 B
C#
using System;
|
|
|
|
namespace Wox.Core.UserSettings
|
|
{
|
|
[Serializable]
|
|
public class CustomPluginHotkey
|
|
{
|
|
public string Hotkey { get; set; }
|
|
public string ActionKeyword { get; set; }
|
|
}
|
|
}
|