1
0
Fork 0
mirror of https://github.com/wagesj45/mdfinder.git synced 2025-09-09 03:20:38 -05:00
Bug fixes and UI redesigns.
This commit is contained in:
Jordan Wages 2020-06-20 13:46:52 -05:00
commit f230812765
6 changed files with 261 additions and 80 deletions

View file

@ -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
}
}
}