mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-22 17:09:28 +00:00
14 lines
258 B
C#
14 lines
258 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace WinAlfred.Plugin
|
|
{
|
|
public class PluginPair
|
|
{
|
|
public IPlugin Plugin { get; set; }
|
|
public PluginMetadata Metadata { get; set; }
|
|
}
|
|
}
|