mirror of
https://github.com/wagesj45/mdfinder.git
synced 2025-09-09 03:20:38 -05:00
Updates
Bug fixes and UI redesigns.
This commit is contained in:
parent
1de70724b0
commit
f230812765
6 changed files with 261 additions and 80 deletions
|
|
@ -28,7 +28,7 @@ namespace mdfinder
|
|||
/// <summary> True to keep. </summary>
|
||||
private bool keep;
|
||||
|
||||
#endregion
|
||||
#endregion Members
|
||||
|
||||
#region Properties
|
||||
|
||||
|
|
@ -122,7 +122,7 @@ namespace mdfinder
|
|||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
#endregion Properties
|
||||
|
||||
#region Constructors
|
||||
|
||||
|
|
@ -142,14 +142,13 @@ namespace mdfinder
|
|||
/// <param name="hashProvider"> The hash provider. </param>
|
||||
public FileRecord(string path, long size, string hash, string hashProvider)
|
||||
{
|
||||
this.Id = path;
|
||||
this.Id = Guid.NewGuid().ToString();
|
||||
this.Path = new Uri(path);
|
||||
this.Size = size;
|
||||
this.Hash = hash;
|
||||
this.HashProvider = hashProvider;
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
#endregion Constructors
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue