Started implementing backend

This commit is contained in:
TypoMustakes
2025-09-22 13:08:08 +02:00
parent 5bd03270d4
commit ebfd763e68
14 changed files with 173 additions and 14 deletions

10
Repository/IRepository.cs Normal file
View File

@@ -0,0 +1,10 @@
using System.Collections;
namespace Repository;
public interface IRepository
{
IEnumerable ReadAll();
void WriteAll(IEnumerable items);
object Get(uint id);
}