mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			381 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			381 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
namespace API.Parser
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// This represents a single file
 | 
						|
    /// </summary>
 | 
						|
    public class ParserInfo
 | 
						|
    {
 | 
						|
        // This can be multiple
 | 
						|
        public string Chapters { get; set; }
 | 
						|
        public string Series { get; set; }
 | 
						|
        // This can be multiple
 | 
						|
        public string Volumes { get; set; }
 | 
						|
        public string File { get; init; }
 | 
						|
    }
 | 
						|
} |