hmn/src/models/tag.go

7 lines
84 B
Go
Raw Normal View History

2021-11-11 19:00:46 +00:00
package models
type Tag struct {
ID int `db:"id"`
Text string `db:"text"`
}