namespace Books.Api.AiBookkeeper;
///
/// Configuration options for the AI Bookkeeper service.
///
public class AiBookkeeperOptions
{
public const string ConfigurationSection = "AiBookkeeper";
///
/// Base URL for the AI Bookkeeper API.
///
public string BaseUrl { get; set; } = "https://ai-bookkeeper.softwarehuset.com";
///
/// API key for authentication.
///
public string ApiKey { get; set; } = string.Empty;
///
/// Request timeout in seconds.
///
public int TimeoutSeconds { get; set; } = 60;
}