User
User
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UserCredentialsImplementation
{
public abstract class User
{
private string username;
private string password;
private string email;
private string dateOfRegister;
private string typeOfUser;
public string Username { get => username; set => username = value; }
public string Password { get => password; set => password = value; }
public string Email { get => email; set => email = value; }
public string DateOfRegister { get => dateOfRegister; set =>
dateOfRegister = value; }
public string TypeOfUser { get => typeOfUser; set => typeOfUser =
value; }