Replace Linqpad-only methods and split into files (works except Hyperlinq)
This commit is contained in:
17
Scraper/Chapter.cs
Normal file
17
Scraper/Chapter.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace WordpressEboobScraper2.Scraper;
|
||||
|
||||
public class Chapter
|
||||
{
|
||||
public string url;
|
||||
public string title;
|
||||
public string next;
|
||||
|
||||
public GZippedString queryResult;
|
||||
public GZippedString sourcecode;
|
||||
public GZippedString chapter;
|
||||
|
||||
public bool isPrologue;
|
||||
public bool isEpilogue;
|
||||
public bool isBonus;
|
||||
public bool isSpecial => isPrologue || isEpilogue || isBonus;
|
||||
}
|
||||
Reference in New Issue
Block a user