api-entities/pricing/model/model.go
2024-12-06 13:24:56 +01:00

8 lines
130 B
Go

package pricing
type ProductPriceModel struct {
// ID int `db:"id"`
PID string `db:"pid"`
Price int `db:"price"`
}