15 lines
337 B
Go
15 lines
337 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type Wishlist struct {
|
|
UUID string `json:"uuid"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
UserID uint `json:"userId"`
|
|
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
DeletedAt *time.Time `json:"deletedAt" gorm:"index"`
|
|
}
|