Kyoo/Kyoo.Common/Models/Plugin.cs
2020-04-07 01:24:17 +02:00

10 lines
165 B
C#

using System.Collections.Generic;
namespace Kyoo.Models
{
public interface IPlugin
{
public string Name { get; }
public IEnumerable<ITask> Tasks { get; }
}
}