Adding of archive items is mostly operational. Need to handle file upload

This commit is contained in:
Vincent Allen
2025-07-29 16:16:42 -04:00
parent 167a8f6fc6
commit a28663441e
158 changed files with 2628 additions and 801 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenArchival.Database;
public interface IDefectsProvider
{
public Task<bool> AddDefect(string defect);
public Task<bool> RemoveDefect(string defect);
public Task<bool> ContainsDefect(string defect);
public Task<IEnumerable<string>> SearchDefects(string query);
public Task<IEnumerable<string>> TopDefects(int resultCount);
}