File size: 415 Bytes
e9584af | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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;
}
|