9 lines
253 B
C#
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; }
|
|
}
|