SOMS/SolutionCleanupTool/Models/ValidationResult.cs
2025-12-31 14:25:09 +08:00

16 lines
519 B
C#

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