mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
14 lines
234 B
C#
14 lines
234 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Controls;
|
|
|
|
namespace Wox.Plugin
|
|
{
|
|
public interface ISettingProvider
|
|
{
|
|
Control CreateSettingPanel();
|
|
}
|
|
}
|