api-entities/model/basket.go

12 lines
212 B
Go
Raw Normal View History

2022-12-18 21:37:23 +01:00
package model
2022-12-18 20:51:26 +01:00
import (
"github.com/jackc/pgtype"
)
type BasketModel struct {
ID string `db:"id"`
CreatedAt pgtype.Timestamp `db:"created_at"`
UpdatedAt pgtype.Timestamp `db:"updated_at"`
}