mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-22 08:11:25 +00:00
14 lines
195 B
C#
14 lines
195 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace WinAlfred.Plugin
|
|||
|
{
|
|||
|
public enum PluginType
|
|||
|
{
|
|||
|
System,
|
|||
|
ThirdParty
|
|||
|
}
|
|||
|
}
|