package models import ( "time" "gorm.io/gorm" ) type Booking struct { gorm.Model RoomID uint `gorm:"not null"` UserID uint `gorm:"not null"` StartTime time.Time `gorm:"not null"` EndTime time.Time `gorm:"not null"` }