16 lines
519 B
C#
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; }
|
|
}
|
|
} |