Jordandevlog's picture
Upload csharp/src/Core/Configuration/AppSettings.cs
e9584af verified
Raw
History Blame Contribute Delete
415 Bytes
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;
}