hmn/src/models/link.go

12 lines
265 B
Go
Raw Normal View History

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