aboutsummaryrefslogtreecommitdiff
path: root/worker/types/sort.go
blob: ffbcf463bcf6943850ac66b5cacbe76ada162c57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package types

type SortField int

const (
	SortArrival SortField = iota
	SortCc
	SortDate
	SortFrom
	SortRead
	SortSize
	SortSubject
	SortTo
)

type SortCriterion struct {
	Field   SortField
	Reverse bool
}