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
Models/Models.csproj Normal file
View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

20
Models/User.cs Normal file
View File

@@ -0,0 +1,20 @@
namespace Models;
public class User
{
public string Username { get; set; }
public string Email { get; }
private string password;
public string Password
{
set => password = value;
}
public User(string username, string email, string password)
{
Username = username;
Email = email;
Password = password;
}
}