blob: 907251536c85e5989c0fafe73472ee1998933aad [file] [log] [blame]
package schema
// Dir represents a directory.
type Dir struct{}
// List is a list of items.
type List struct {
Name string
// Subdirectories:
//
// Items/ contains values of type Item.
}
// Item is a single task to be done.
type Item struct {
Text string
Done bool
Tags []string
}