9 lines
252 B
Go
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"`
|
|
}
|