mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-03 19:17:16 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			351 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			351 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace Kyoo.Models
 | 
						|
{
 | 
						|
	public class SearchResult
 | 
						|
	{
 | 
						|
		public string Query;
 | 
						|
		public IEnumerable<Collection> Collections;
 | 
						|
		public IEnumerable<Show> Shows;
 | 
						|
		public IEnumerable<Episode> Episodes;
 | 
						|
		public IEnumerable<People> People;
 | 
						|
		public IEnumerable<Genre> Genres;
 | 
						|
		public IEnumerable<Studio> Studios;
 | 
						|
	}
 | 
						|
}
 |