You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
329 B
23 lines
329 B
5 years ago
|
package tools
|
||
|
|
||
|
import "html/template"
|
||
|
|
||
|
type IndexData struct {
|
||
|
Folders map[string]int
|
||
|
Mails interface{}
|
||
|
MailPagelist []*MailItem
|
||
|
CurrentPage int
|
||
|
Fid string
|
||
|
NextPage,PrePage string
|
||
|
NumPages template.HTML
|
||
|
|
||
|
}
|
||
|
type MailItem struct{
|
||
|
Subject string
|
||
|
Id uint32
|
||
|
Fid string
|
||
|
}
|
||
|
type MailPageList struct{
|
||
|
MailItems []*MailItem
|
||
|
}
|