mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-10-31 02:27:11 -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; }
 | |
| 	}
 | |
| } |