mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
22 lines
422 B
C#
22 lines
422 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using Newtonsoft.Json;
|
|||
|
|
|||
|
namespace Wox.Plugin.DotnetPluginTest
|
|||
|
{
|
|||
|
public class Main : IPlugin
|
|||
|
{
|
|||
|
public List<Result> Query(Query query)
|
|||
|
{
|
|||
|
return new List<Result>();
|
|||
|
}
|
|||
|
|
|||
|
public void Init(PluginInitContext context)
|
|||
|
{
|
|||
|
var s = JsonSerializer.Create();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|