namespace AiDevProject.Core.Configuration; /// /// Application settings loaded from configuration. /// public class AppSettings { public string AppName { get; set; } = "MyApp"; public int Port { get; set; } = 8080; public string DatabaseUrl { get; set; } = "sqlite:///app.db"; public string SecretKey { get; set; } = "change-me"; public bool Debug { get; set; } = false; }