Moved source to subfolder

This commit is contained in:
2025-09-26 11:04:03 +02:00
parent 22ad11add1
commit 6902aeb9c0
17 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System.Collections;
using Models;
namespace Repository;
public interface IRepository
{
List<PasswordStore> GetAll();
PasswordStore? Get(uint id);
void Edit(uint ID, PasswordStore newItem);
void Create(PasswordStore item);
void Delete(uint ID);
void Delete(PasswordStore item);
}