Implements search functionality and prepares for upcoming paging in v0.3.

This commit is contained in:
Joseph Milazzo 2021-02-15 13:08:30 -06:00
parent 852317d3a6
commit 2887fab53f
17 changed files with 174 additions and 15 deletions

14
API/Entities/FTSSeries.cs Normal file
View file

@ -0,0 +1,14 @@
namespace API.Entities
{
public class FTSSeries
{
public int RowId { get; set; }
public Series Series { get; set; }
public string Name { get; set; }
public string OriginalName { get; set; }
public string Match { get; set; }
public double? Rank { get; set; }
}
}

View file

@ -30,6 +30,7 @@ namespace API.Entities
public DateTime Created { get; set; }
public DateTime LastModified { get; set; }
public byte[] CoverImage { get; set; }
// NOTE: Do I want to store a thumbImage for search results?
/// <summary>
/// Sum of all Volume page counts
/// </summary>