using System.Collections.Generic; namespace SolutionCleanupTool.Models { /// /// Represents the result of validating a solution after cleanup /// public class ValidationResult { public bool IsValid { get; set; } public List Errors { get; set; } = new List(); public List Warnings { get; set; } = new List(); public bool CanLoadSolution { get; set; } public bool HasCircularReferences { get; set; } } }