| namespace AiDevProject.Core.Configuration; | |
| /// <summary> | |
| /// Application settings loaded from configuration. | |
| /// </summary> | |
| 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; | |
| } | |