Got the new ui flow working and the models updated. Need to get changes written to the database.

This commit is contained in:
Vincent Allen
2025-08-11 10:02:45 -04:00
parent 6475a28263
commit 3d82040e75
456 changed files with 17237 additions and 3851 deletions

View File

@@ -8,11 +8,11 @@ namespace OpenArchival.Database;
public interface IFilePathProvider
{
public Task<bool> AddFile(string path);
public Task<bool> AddFileInfo(string path, string originalName);
public Task<bool> RemoveFile(string path);
public Task<bool> RemoveFileInfo(string path, string originalName);
public Task<IEnumerable<FileInfo>> SearchFiles(string filename);
public Task<IEnumerable<FilePathInfo>> SearchFiles(string filename);
public Task<IEnumerable<FileInfo>> TopFiles(int resultsCount);
public Task<IEnumerable<FilePathInfo>> TopFiles(int resultsCount);
}