9 lines
166 B
C#
9 lines
166 B
C#
namespace JobTrackerApi.Services.JobImport;
|
|
|
|
public interface IJobSitePlugin
|
|
{
|
|
bool CanHandle(string url);
|
|
JobImportResult Parse(string html, string url);
|
|
}
|
|
|