|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Text.RegularExpressions;
|
|
using System.Text;
|
|
|
|
namespace Rokojori
|
|
{
|
|
public interface HtmlElementSelector
|
|
{
|
|
bool Selects( HtmlElementNode elementNode );
|
|
|
|
string selector { get; }
|
|
}
|
|
} |