This commit is contained in:
Matt Parker
2025-08-13 19:27:49 +10:00
parent 0b30611aa7
commit 8ca6c5f38c
6 changed files with 9 additions and 160 deletions

View File

@@ -0,0 +1,9 @@
using SharpIDE.Application.Features.SolutionDiscovery.VsPersistence;
namespace SharpIDE.Application.Features.SolutionDiscovery;
public class SharpIdeFile : ISharpIdeNode
{
public required string Path { get; set; }
public required string Name { get; set; }
}