mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-30 18:22:29 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			656 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			656 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
 | |
| namespace API.Entities
 | |
| {
 | |
|     public class MangaFile
 | |
|     {
 | |
|         public int Id { get; set; }
 | |
|         public string FilePath { get; set; }
 | |
|         /// <summary>
 | |
|         /// Do not expect this to be set. If this MangaFile represents a volume file, this will be null.
 | |
|         /// </summary>
 | |
|         public int Chapter { get; set; } 
 | |
|         /// <summary>
 | |
|         /// Number of pages for the given file
 | |
|         /// </summary>
 | |
|         public int NumberOfPages { get; set; }
 | |
|         public MangaFormat Format { get; set; }
 | |
| 
 | |
|         // Relationship Mapping
 | |
|         public Volume Volume { get; set; }
 | |
|         public int VolumeId { get; set; }
 | |
|         
 | |
|     }
 | |
| } |