hmn/src/models/thread.go

16 lines
274 B
Go
Raw Normal View History

package models
type Thread struct {
ID int `db:"id"`
CategoryID int `db:"category_id"`
2021-07-04 22:48:08 +00:00
Title string `db:"title"`
Sticky bool `db:"sticky"`
Locked bool `db:"locked"`
Deleted bool `db:"deleted"`
FirstID *int `db:"first_id"`
LastID *int `db:"last_id"`
}