1
0
Fork 0
mirror of https://github.com/wagesj45/mdfinder.git synced 2025-09-09 03:20:38 -05:00

Beginning Work

This is early stage development. Still getting the main components together and figureing out how the flow should work.
This commit is contained in:
Jordan Wages 2019-02-14 02:18:46 -06:00
commit f5b2f9e0f6
19 changed files with 1317 additions and 29 deletions

35
mdfinder/FileRecord.cs Normal file
View file

@ -0,0 +1,35 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace mdfinder
{
public class FileRecord
{
#region Properties
/// <summary> Gets or sets the identifier. </summary>
/// <value> The identifier. </value>
public uint Id { get; set; }
/// <summary> Gets or sets the full pathname of the file. </summary>
/// <value> The full pathname of the file. </value>
public string Path { get; set; }
/// <summary> Gets or sets the size. </summary>
/// <value> The size. </value>
public long Size { get; set; }
/// <summary> Gets or sets the hash. </summary>
/// <value> The hash. </value>
public string Hash { get; set; }
/// <summary> Gets or sets the hash provider. </summary>
/// <value> The hash provider. </value>
public string HashProvider { get; set; }
#endregion
}
}