16 lines
370 B
C#
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;
|
|
}
|
|
}
|
|
} |