using System; using System.Collections.Generic; namespace SolutionCleanupTool.Models { /// /// Represents a parsed Visual Studio solution file /// public class SolutionModel { public string FilePath { get; set; } = string.Empty; public List Projects { get; set; } = new List(); public List Configurations { get; set; } = new List(); public Dictionary GlobalSections { get; set; } = new Dictionary(); } /// /// Represents a solution configuration (Debug, Release, etc.) /// public class SolutionConfiguration { public string Name { get; set; } = string.Empty; public string Platform { get; set; } = string.Empty; } }