api-entities/model/pricing.go

8 lines
128 B
Go
Raw Permalink Normal View History

2022-12-18 21:37:23 +01:00
package model
2022-12-19 08:52:12 +01:00
type ProductPriceModel struct {
ID int `db:"id"`
2022-12-20 16:09:44 +01:00
PID string `db:"pid"`
2022-12-19 08:52:12 +01:00
Price float64 `db:"price"`
}