16 lines
540 B
C#
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>();
|
|
}
|
|
} |