SeemGen/Interfaces/IBrightDataService.cs

8 lines
171 B
C#

namespace BLAIzor.Interfaces
{
public interface IBrightDataService
{
Task<string?> ScrapeFacebookPostsAsync(string pageUrl, int numPosts = 10);
}
}