wikingo/model/page.go

12 lines
102 B
Go

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