using System.Collections.Generic; using Kyoo.Models; namespace Kyoo.Controllers { public interface IPluginManager { public T GetPlugin(string name); public IEnumerable GetPlugins(); public IEnumerable GetAllPlugins(); public void ReloadPlugins(); } }