7 lines
98 B
Go
7 lines
98 B
Go
package pricing
|
|
|
|
type ProductPrice struct {
|
|
PID string `db:"pid"`
|
|
Price int `db:"price"`
|
|
}
|