Robin Weichselbraun 37c33f3e15 initial commit
2025-05-09 14:26:16 +02:00

10 lines
237 B
C#

namespace RedundancyFinder
{
public class Redundancy
{
public List<string> Paths { get; set; } = new List<string>();
public object Hash { get; set; }
public long FileSize { get; set; }
}
}