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

16 lines
540 B
C#

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