Files
DotNetSolutionTools/DotNetSolutionTools.App/Models/LocalStateDto.cs
Matthew Parker [SSW] 57ec0b85d7 Csharpier format
2024-01-21 15:00:38 +10:00

9 lines
272 B
C#

namespace DotNetSolutionTools.App.Models;
public class LocalStateDto
{
public string SolutionFolderPath { get; set; } = string.Empty;
public string SolutionFilePath { get; set; } = string.Empty;
public string CsprojFilePath { get; set; } = string.Empty;
}