10 lines
237 B
C#
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; }
|
|
}
|
|
} |