Table of Contents

Class Account

Namespace
BankBackend.Models
Assembly
BankBackend.dll
public class Account
Inheritance
Account
Inherited Members

Constructors

Account()

public Account()

Properties

AccountId

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

Property Value

int

Balance

public double Balance { get; set; }

Property Value

double

PrimaryUserId

[ForeignKey("UserId")]
public int PrimaryUserId { get; set; }

Property Value

int

Type

public AccountType Type { get; set; }

Property Value

AccountType

Users

public List<User> Users { get; set; }

Property Value

List<User>