Files
DotNetSolutionTools/DotNetSolutionTools.Photino/Models/AppState.cs
Matt Parker 4db57d1eb2 Fix warnings
2025-05-18 13:48:36 +10:00

9 lines
253 B
C#

namespace DotNetSolutionTools.Photino.Models;
public class AppState
{
public required string? SolutionFolderPath { get; set; }
public required string? SolutionFilePath { get; set; }
public required string? CsprojFilePath { get; set; }
}