using FictionArchive.Service.NovelService.Models.Novels; using FictionArchive.Service.Shared.Models; namespace FictionArchive.Service.NovelService.Models.Images; public class Image : BaseEntity { public string OriginalPath { get; set; } public string? NewPath { get; set; } // Chapter link. Even if an image appears in another chapter, we should rehost it separately. public Chapter? Chapter { get; set; } }