hmn/src/models/link.go

11 lines
227 B
Go
Raw Normal View History

2021-06-22 09:50:40 +00:00
package models
type Link struct {
ID int `db:"id"`
Name string `db:"name"`
URL string `db:"url"`
Ordering int `db:"ordering"`
UserID *int `db:"user_id"`
ProjectID *int `db:"project_id"`
2021-06-22 09:50:40 +00:00
}