firecrawl/apps/dot-net-sdk/Firecrawl/Models/CrawlResponse.cs

19 lines
381 B
C#

using System.Text.Json.Serialization;
namespace Firecrawl.Models;
/// <summary>
/// Response from starting an async crawl job.
/// </summary>
public class CrawlResponse
{
[JsonPropertyName("success")]
public bool Success { get; set; }
[JsonPropertyName("id")]
public string? Id { get; set; }
[JsonPropertyName("url")]
public string? Url { get; set; }
}