Task done

This commit is contained in:
2025-09-27 23:01:24 +02:00
parent 6c5579809d
commit 6fb3ffb680
8 changed files with 95 additions and 19 deletions

View File

@@ -4,12 +4,7 @@ public class User
{
public string Username { get; set; }
public string Email { get; }
private string password;
public string Password
{
set => password = value;
}
public string Password { get; set; }
public User(string username, string email, string password)
{