mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-12 05:36:49 +00:00
10 lines
140 B
Go
10 lines
140 B
Go
package booking
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Payment struct {
|
|
gorm.Model
|
|
BookingID int
|
|
Amount float64
|
|
PaymentMethod string
|
|
}
|