Table of Contents

Class User

Namespace
BankBackend.Models
Assembly
BankBackend.dll
[Index("Username", new string[] { }, IsUnique = true)]
public class User
Inheritance
User
Inherited Members

Constructors

User()

public User()

User(string, string, string)

public User(string username, string password, string name)

Parameters

username string
password string
name string

Properties

Accounts

public List<Account> Accounts { get; set; }

Property Value

List<Account>

Name

public string Name { get; set; }

Property Value

string

Password

public string Password { get; set; }

Property Value

string

UserId

[Key]
public int UserId { get; set; }

Property Value

int

Username

public string Username { get; set; }

Property Value

string