mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 21:56:39 +00:00
13 lines
411 B
C#
13 lines
411 B
C#
namespace SatelliteProvider.Common.Configs;
|
|
|
|
public class ProcessingConfig
|
|
{
|
|
public int MaxConcurrentDownloads { get; set; } = 4;
|
|
public int MaxConcurrentRegions { get; set; } = 3;
|
|
public int DefaultZoomLevel { get; set; } = 20;
|
|
public int QueueCapacity { get; set; } = 100;
|
|
public int DelayBetweenRequestsMs { get; set; } = 50;
|
|
public int SessionTokenReuseCount { get; set; } = 100;
|
|
}
|
|
|