api-entities/pricing/model/product_price.go

7 lines
103 B
Go
Raw Normal View History

2024-12-06 13:24:56 +01:00
package pricing
2022-12-19 08:52:12 +01:00
type ProductPriceModel struct {
2024-07-15 20:24:01 +02:00
PID string `db:"pid"`
Price int `db:"price"`
2022-12-19 08:52:12 +01:00
}