using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace mdfinder { public class FileRecord { #region Properties /// Gets or sets the identifier. /// The identifier. public Int64 Id { get; set; } /// Gets or sets the full pathname of the file. /// The full pathname of the file. public Uri Path { get; set; } /// Gets or sets the size. /// The size. public long Size { get; set; } /// Gets or sets the hash. /// The hash. public string Hash { get; set; } /// Gets or sets the hash provider. /// The hash provider. public string HashProvider { get; set; } #endregion } }