rentease/internal/view/item_viewmodel.go
2025-01-19 15:23:54 +01:00

19 lines
336 B
Go

package view
type ItemViewModel struct {
Id string
BookingId string
Item string
Quantity string
Price string
SubTotal string
PaymentStatus string
ItemUrl string
Payments []Payment
}
type Payment struct {
Amount string
PaymentMethod string
PaymentUrl string
}