mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
10 lines
165 B
C#
10 lines
165 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kyoo.Models
|
|
{
|
|
public interface IPlugin
|
|
{
|
|
public string Name { get; }
|
|
public IEnumerable<ITask> Tasks { get; }
|
|
}
|
|
} |