PowerToys/Wox.Plugin.System/ISystemPlugin.cs

14 lines
244 B
C#
Raw Normal View History

2014-01-03 11:16:05 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2014-01-29 11:33:24 +01:00
namespace Wox.Plugin.System
2014-01-03 11:16:05 +01:00
{
public interface ISystemPlugin : IPlugin
{
2014-01-03 16:52:36 +01:00
string Name { get; }
string Description { get; }
2014-01-03 11:16:05 +01:00
}
}