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; } } }