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

9
Logic/IUserService.cs Normal file
View File

@@ -0,0 +1,9 @@
using Models;
namespace Logic;
public interface IUserService
{
public void Create(string username, string email, string password);
public User? Read();
}