Files
AI/참고/firecrawl-main/apps/dot-net-sdk/Firecrawl/Models/CrawlResponse.cs
2026-05-12 19:40:31 +09:00

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; }
}