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