Initial commit: JDE Scoping Tool migration project
Set up repository with legacy .NET Framework 4.8 source (OLD/), new .NET 10 Blazor solution (NEW/), OpenSpec specifications, documentation, and project configuration.
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
namespace JdeScoping.Core.Options;
|
||||
|
||||
/// <summary>
|
||||
/// Configuration options for search processing background service.
|
||||
/// </summary>
|
||||
public class SearchProcessingOptions
|
||||
{
|
||||
/// <summary>
|
||||
/// Configuration section name in appsettings.json.
|
||||
/// </summary>
|
||||
public const string SectionName = "SearchProcessing";
|
||||
|
||||
/// <summary>
|
||||
/// Interval in seconds between polling for new search requests.
|
||||
/// </summary>
|
||||
public int PollingIntervalSeconds { get; set; } = 5;
|
||||
|
||||
/// <summary>
|
||||
/// Maximum number of concurrent search operations.
|
||||
/// </summary>
|
||||
public int MaxConcurrentSearches { get; set; } = 2;
|
||||
|
||||
/// <summary>
|
||||
/// Search operation timeout in minutes.
|
||||
/// </summary>
|
||||
public int SearchTimeoutMinutes { get; set; } = 30;
|
||||
}
|
||||
Reference in New Issue
Block a user