1
0

Replace Linqpad-only methods and split into files (works except Hyperlinq)

This commit is contained in:
2023-08-20 16:10:39 +02:00
parent ccfeedc067
commit 9692dc531f
16 changed files with 1748 additions and 1662 deletions

17
Scraper/Chapter.cs Normal file
View 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;
}