api-entities/model/basket.go
2022-12-18 21:37:23 +01:00

12 lines
212 B
Go

package model
import (
"github.com/jackc/pgtype"
)
type BasketModel struct {
ID string `db:"id"`
CreatedAt pgtype.Timestamp `db:"created_at"`
UpdatedAt pgtype.Timestamp `db:"updated_at"`
}