Added basic parsing and unit tests. Setting up an intermediate object to hold information from parser. Removed hangfire db from git.
This commit is contained in:
parent
4fd9943b91
commit
8c80ed090d
13 changed files with 347 additions and 8 deletions
14
API/Parser/ParserInfo.cs
Normal file
14
API/Parser/ParserInfo.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace API.Parser
|
||||
{
|
||||
public class ParserInfo
|
||||
{
|
||||
// This can be multiple
|
||||
public string Chapters { get; set; }
|
||||
public string Series { get; set; }
|
||||
// This can be multiple
|
||||
public string Volume { get; set; }
|
||||
public IEnumerable<string> Files { get; init; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue