mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			455 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			455 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
using System;
 | 
						|
 | 
						|
namespace API.Entities
 | 
						|
{
 | 
						|
    public class FolderPath
 | 
						|
    {
 | 
						|
        public int Id { get; set; }
 | 
						|
        public string Path { get; set; }
 | 
						|
        /// <summary>
 | 
						|
        /// Used when scanning to see if we can skip if nothing has changed.
 | 
						|
        /// </summary>
 | 
						|
        public DateTime LastScanned { get; set; }
 | 
						|
        
 | 
						|
        // Relationship
 | 
						|
        public Library Library { get; set; }
 | 
						|
        public int LibraryId { get; set; }
 | 
						|
    }
 | 
						|
} |