First commit

This commit is contained in:
2025-09-26 17:32:32 +02:00
commit 6c5579809d
14 changed files with 417 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
using Models;
namespace Repository;
public interface IRepository
{
public User? Read();
public void Write(User item);
}