wikingo/model/page.go
2022-03-18 13:15:55 +01:00

12 lines
102 B
Go

package model
import (
"gorm.io/gorm"
)
type Page struct {
gorm.Model
Code string
Price uint
}