Files
Keys/src/Repository/IRepository.cs

11 lines
193 B
C#
Raw Normal View History

2025-09-22 13:08:08 +02:00
using System.Collections;
2025-09-22 15:35:31 +02:00
using Models;
2025-09-22 13:08:08 +02:00
namespace Repository;
public interface IRepository
{
2025-09-22 15:35:31 +02:00
List<PasswordStore> GetAll();
void Create(PasswordStore item);
void Delete(uint ID);
2025-09-22 13:08:08 +02:00
}