13 lines
436 B
C#
13 lines
436 B
C#
using FictionArchive.Service.NovelService.Models.Novels;
|
|
using FictionArchive.Service.Shared.Models;
|
|
|
|
namespace FictionArchive.Service.NovelService.Models.Images;
|
|
|
|
public class Image : BaseEntity<Guid>
|
|
{
|
|
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; }
|
|
} |