2025-05-10 03:12:05 +02:00

12 lines
259 B
C#

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