18 lines
345 B
C#
18 lines
345 B
C#
namespace WordpressEboobScraper2.Scraper;
|
|
|
|
public class Hyperlinq
|
|
{
|
|
private readonly Action action;
|
|
private readonly string title;
|
|
|
|
public Hyperlinq(Action action, string title)
|
|
{
|
|
this.action = action;
|
|
this.title = title;
|
|
}
|
|
|
|
public void Dump()
|
|
{
|
|
Console.Out.WriteLine(this.title);
|
|
}
|
|
} |