Basic Avalonia

This commit is contained in:
Matthew Parker
2023-08-29 23:54:46 +10:00
parent fe9b8627c5
commit 7be89cf2e0
11 changed files with 163 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
namespace SolutionParityChecker.App;
public class MainWindowViewModel
{
public string SolutionFolderPath { get; set; } = string.Empty;
public string SolutionFilePath { get; set; } = string.Empty;
}