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

16 lines
370 B
C#

namespace RedundancyFinder
{
public class FileFoundEventArgs
{
public string FilePath { get; }
public string Hash { get; }
public long Size { get; }
public FileFoundEventArgs(string filePath, string hash, long size)
{
FilePath = filePath;
Hash = hash;
Size = size;
}
}
}