mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 22:56:37 +00:00
10 lines
239 B
C#
10 lines
239 B
C#
namespace SatelliteProvider.Common.Configs;
|
|
|
|
public class ProcessingConfig
|
|
{
|
|
public int MaxConcurrentDownloads { get; set; } = 4;
|
|
public int DefaultZoomLevel { get; set; } = 20;
|
|
public int QueueCapacity { get; set; } = 100;
|
|
}
|
|
|