mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			235 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			235 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
namespace API.Entities
 | 
						|
{
 | 
						|
    public class FolderPath
 | 
						|
    {
 | 
						|
        public int Id { get; set; }
 | 
						|
        public string Path { get; set; }
 | 
						|
        public Library Library { get; set; }
 | 
						|
        public int LibraryId { get; set; }
 | 
						|
    }
 | 
						|
} |