(account: Account, username: string, password: string)
| 52 | [PrimaryKeyProp]?: 'account'; |
| 53 | |
| 54 | constructor(account: Account, username: string, password: string) { |
| 55 | this.account = ref(account); |
| 56 | this.username = username; |
| 57 | this.password = password; |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | @Entity() |