RedundancyFixer/RedundancyFinder/DirectoryErrorEventArgs.cs
2025-05-10 03:12:05 +02:00

8 lines
176 B
C#

namespace RedundancyFinder
{
public class DirectoryErrorEventArgs
{
public Exception Exception { get; set; }
public string Path { get; set; }
}
}