namespace LittleShop.Client.Configuration; public class LittleShopClientOptions { public string BaseUrl { get; set; } = "https://localhost:5001"; public int TimeoutSeconds { get; set; } = 30; public int MaxRetryAttempts { get; set; } = 3; public bool EnableLogging { get; set; } = true; public string? ApiKey { get; set; } }