namespace StabilityMatrix.Core.Models.Configs; public class DebugOptions { /// /// Sets up LiteDB to use a temporary database file on each run /// public bool TempDatabase { get; set; } /// /// Always show the one-click install page on launch /// public bool ShowOneClickInstall { get; set; } /// /// Override the default update manifest url /// (https://cdn.lykos.ai/update.json) /// public string? UpdateManifestUrl { get; set; } }