parent
086db15aff
commit
d829d0db60
@ -0,0 +1,22 @@
|
|||||||
|
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
|
||||||
|
}
|
Loading…
Reference in new issue