using System.Collections.Generic;
namespace SolutionCleanupTool.Models
{
///
/// Represents the result of a cleanup operation
///
public class CleanupResult
{
public List RemovedProjects { get; set; } = new List();
public int TotalProjectsRemoved { get; set; }
public string BackupFilePath { get; set; } = string.Empty;
public bool Success { get; set; }
public List Warnings { get; set; } = new List();
}
}