mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-10 20:56:50 +00:00
20 lines
358 B
Go
20 lines
358 B
Go
package view
|
|
|
|
type ItemViewModel struct {
|
|
Id string
|
|
BookingId string
|
|
Item string
|
|
Quantity string
|
|
Price string
|
|
SubTotal string
|
|
PaymentStatus string
|
|
PaymentUrl string
|
|
ItemUrl string
|
|
Payments []Payment
|
|
}
|
|
|
|
type Payment struct {
|
|
Amount string
|
|
PaymentMethod string
|
|
PaymentUrl string
|
|
}
|