16 lines
320 B
C#
16 lines
320 B
C#
|
|
using System.Text.Json.Serialization;
|
||
|
|
|
||
|
|
namespace Firecrawl.Models;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Current concurrency usage information.
|
||
|
|
/// </summary>
|
||
|
|
public class ConcurrencyCheck
|
||
|
|
{
|
||
|
|
[JsonPropertyName("current")]
|
||
|
|
public int Current { get; set; }
|
||
|
|
|
||
|
|
[JsonPropertyName("max")]
|
||
|
|
public int MaxConcurrency { get; set; }
|
||
|
|
}
|