First pass for supporting lazy loading and not using base64 strings for loading images in UI.

This commit is contained in:
Joseph Milazzo 2021-03-12 12:22:04 -06:00
parent fea1f3d152
commit 33515ad865
6 changed files with 98 additions and 3 deletions

View file

@ -5,7 +5,7 @@ namespace API.DTOs
public class MangaFileDto
{
public string FilePath { get; set; }
public int NumberOfPages { get; set; }
public int NumberOfPages { get; set; } // TODO: Refactor to Pages
public MangaFormat Format { get; set; }
}