8 lines
210 B
C#
8 lines
210 B
C#
namespace SolutionParityChecker.App;
|
|
|
|
public class MainWindowViewModel
|
|
{
|
|
public string SolutionFolderPath { get; set; } = string.Empty;
|
|
public string SolutionFilePath { get; set; } = string.Empty;
|
|
}
|