mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			249 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			249 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.Archive
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Represents which library should handle opening this library
 | 
						|
    /// </summary>
 | 
						|
    public enum ArchiveLibrary
 | 
						|
    {
 | 
						|
        NotSupported = 0,
 | 
						|
        SharpCompress = 1,
 | 
						|
        Default = 2
 | 
						|
    }
 | 
						|
} |