Implemented ability to generate Series summary from ComicInfo.xml (if present)
This commit is contained in:
parent
5be01b529b
commit
265f7dcc8c
4 changed files with 62 additions and 3 deletions
15
API/Services/ComicInfo.cs
Normal file
15
API/Services/ComicInfo.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
namespace API.Services
|
||||
{
|
||||
public class ComicInfo
|
||||
{
|
||||
public string Summary;
|
||||
public string Title;
|
||||
public string Series;
|
||||
public string Notes;
|
||||
public string Publisher;
|
||||
public string Genre;
|
||||
public int PageCount;
|
||||
public string LanguageISO;
|
||||
public string Web;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue