mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-03 19:17:16 -05: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 ICollection<ITask> Tasks { get; }
 | 
						|
	}
 | 
						|
} |