wikingo/model/page.go

12 lines
102 B
Go
Raw Normal View History

2022-03-15 21:50:11 +01:00
package model
import (
"gorm.io/gorm"
)
type Page struct {
gorm.Model
Code string
Price uint
}