Files
geek-life/model/project.go
2020-06-06 12:57:29 +06:00

9 lines
252 B
Go

package model
// Project represent a collection of related tasks (tags of Habitica)
type Project struct {
ID int64 `storm:"id,increment",json:"id"`
Title string `storm:"index",json:"title"`
UUID string `storm:"unique",json:"uuid,omitempty"`
}