blob: 33bf872c94aacab65225dc668891ecdb0fed774e (
plain) (
tree)
|
|
//go:build notmuch
// +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
}
|