rename property

This commit is contained in:
Matt Parker
2025-10-02 20:16:26 +10:00
parent 9c1dcbdf6c
commit f325b546b8
4 changed files with 10 additions and 10 deletions

View File

@@ -4,7 +4,7 @@ public class AppState
{
public string? LastOpenSolutionFilePath { get; set; }
public IdeSettings IdeSettings { get; set; } = new IdeSettings();
public HashSet<PreviouslyOpenedSln> PreviouslyOpenedSolutions { get; set; } = [];
public HashSet<RecentSln> RecentSlns { get; set; } = [];
}
public class IdeSettings
@@ -12,7 +12,7 @@ public class IdeSettings
public bool AutoOpenLastSolution { get; set; }
}
public record PreviouslyOpenedSln
public record RecentSln
{
public required string Name { get; set; }
public required string FilePath { get; set; }