mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-07 20:07:56 +08:00
14 lines
277 B
C#
14 lines
277 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Wox.Infrastructure.UserSettings
|
|||
|
{
|
|||
|
public class CustomPluginHotkey
|
|||
|
{
|
|||
|
public string Hotkey { get; set; }
|
|||
|
public string ActionKeyword { get; set; }
|
|||
|
}
|
|||
|
}
|