Filterable tours

This commit is contained in:
2024-09-29 14:28:29 +02:00
parent 4bcc2b86d5
commit 422a5e1722
36 changed files with 265 additions and 114 deletions

View File

@@ -0,0 +1,15 @@
import { AccountRole } from "./accountRole"
import { AddressModel } from "./addressModel"
import { PaymentModel } from "./paymentModel"
export class AccountModel {
id: number
username: string = ""
password: string = ""
email: string = ""
firstName: string = ""
lastName: string = ""
addresses: Array<AddressModel> = [ new AddressModel() ]
payments: Array<PaymentModel> = [ new PaymentModel() ]
accountRole: AccountRole = new AccountRole()
}