blob: 297260d8dedad2593f6843844d557da0d1b7e6c3 (
plain) (
tree)
|
|
//+build notmuch
package lib
type ThreadNode struct {
Uid string
From string
Subject string
InQuery bool // is the msg included in the query
Parent *ThreadNode
NextSibling *ThreadNode
FirstChild *ThreadNode
}
|