Files
satellite-provider/SatelliteProvider.Common/Configs/ProcessingConfig.cs
T
2025-11-19 13:01:30 +01:00

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