Duplicate File Locator 1.0
Loading...
Searching...
No Matches
IDuplicatedFile.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
8{
9 public interface IDuplicatedFile
10 {
11 #region Attributes
12
16 string Hash { get; }
17
21 string OriginalPath { get; set; }
22
26 List<string> DuplicatePaths { get; }
27
28 #endregion
29
30 #region Methods
31
36 void AddDuplicatePath(string path);
37
38 #endregion
39 }
40}
List< string > DuplicatePaths
List of paths to duplicate files.
void AddDuplicatePath(string path)
Method adds path to DuplicatePaths.