add initial file scan and rescanning algorithms to hash all penumbra files

This commit is contained in:
Stanley Dimant
2022-06-10 01:41:47 +02:00
parent 3f737df71f
commit 3b9c485627
8 changed files with 231 additions and 15 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
#nullable disable
namespace MareSynchronos.FileCacheDB
{
public partial class FileCache
{
public string Hash { get; set; }
public string Filepath { get; set; }
public string LastModifiedDate { get; set; }
}
}