Flow.Launcher/Flow.Launcher.Plugin/Features.cs

14 lines
295 B
C#
Raw Permalink Normal View History

2021-07-07 08:09:14 +00:00
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Threading;
namespace Flow.Launcher.Plugin
{
/// <summary>
2021-07-07 17:47:20 +00:00
/// Base Interface for Flow's special plugin feature interface
2021-07-07 08:09:14 +00:00
/// </summary>
2021-07-07 17:47:20 +00:00
public interface IFeatures
2021-07-07 08:09:14 +00:00
{
}
}