mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-30 18:22:29 -04:00 
			
		
		
		
	* feat: implement anonymous usage data collection Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
		
			
				
	
	
		
			10 lines
		
	
	
		
			200 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			200 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Collections.Generic;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace API.Interfaces
 | |
| {
 | |
|     public interface IFileRepository
 | |
|     {
 | |
|         Task<IEnumerable<string>> GetFileExtensions();
 | |
|     }
 | |
| } |