namespace JdeScoping.Core.Options; public class SearchOptions { public int MaxResultRows { get; set; } = 100000; public int TimeoutSeconds { get; set; } = 300; public int MaxConcurrentSearches { get; set; } = 5; }