add setting

This commit is contained in:
Matt Parker
2025-08-02 16:30:13 +10:00
parent 67e781d431
commit 79a0b9edfb
2 changed files with 3 additions and 1 deletions

View File

@@ -2,11 +2,12 @@ namespace SharpIDE.Photino.Models;
public class AppState
{
public required string SolutionFilePath { get; set; }
public required string? SolutionFilePath { get; set; }
public required IdeSettings IdeSettings { get; set; } = new IdeSettings();
}
public class IdeSettings
{
public bool AutoOpenLastSolution { get; set; }
public bool AutoOpenTerminalOnLaunch { get; set; }
}