namespace API.Entities
{
    public class MangaFile
    {
        public int Id { get; set; }
        /// 
        /// Absolute path to the archive file
        /// 
        public string FilePath { get; set; }
        /// 
        /// Used to track if multiple MangaFiles (archives) represent a single Volume. If only one volume file, this will be 0.
        /// 
        public int Chapter { get; set; } 
        /// 
        /// Number of pages for the given file
        /// 
        public int NumberOfPages { get; set; }
        public MangaFormat Format { get; set; }
        // Relationship Mapping
        public Volume Volume { get; set; }
        public int VolumeId { get; set; }
        
    }
}