Initial Commit

This commit is contained in:
2026-04-20 19:14:50 -05:00
parent f6b76d78fa
commit 4674529b91
28 changed files with 452 additions and 0 deletions
@@ -0,0 +1,8 @@
namespace WyvernInventory.Core.Interfaces.Repos;
public interface IDbObjectRepo<T>
{
public Task<List<T>> GetAsync(Predicate<T>? filter = null);
public Task<(int created, int updated)> UpsertAsync(List<T> items);
public Task DeleteAsync(List<T> items);
}