1
0
Fork 0
mirror of https://github.com/wagesj45/mdfinder.git synced 2025-07-15 12:31:32 -05:00
mdfinder/mdfinder/FileRecord.cs
Jordan Wages f81e4f13da Periodic Checkin
Got the application scanning and displaying results.
2019-02-17 21:17:05 -06:00

35 lines
990 B
C#

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