Ticket Component

This commit is contained in:
2024-10-06 19:30:12 +02:00
parent c050560fba
commit 4a62c7a96b
47 changed files with 365 additions and 219 deletions

View File

@@ -1,12 +1,12 @@
import { AddressModel } from "../user/addressModel"
import { OrderItemModel } from "./orderItemModel"
import { PaymentModel } from "../user/paymentModel"
import { TicketModel } from "./ticketModel"
export class OrderModel {
id: number
accountId: number
shippingProgress: number
orderItems: Array<OrderItemModel>
tickets: Array<TicketModel>
orderedAt: string
payment: PaymentModel
address: AddressModel