Files
DotNetSolutionTools/DotNetSolutionTools.App/Models/LocalStateDto.cs
Matthew Parker [SSW] 1345c56eea Warnings as errors
2023-09-20 21:52:13 +10:00

8 lines
271 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;
}