Files
jobtrackingapp/JobTrackerApi/Services/JobImport/IJobSitePlugin.cs
T
2026-03-21 11:55:27 +01:00

9 lines
166 B
C#

namespace JobTrackerApi.Services.JobImport;
public interface IJobSitePlugin
{
bool CanHandle(string url);
JobImportResult Parse(string html, string url);
}