gosora/topic.go

38 lines
482 B
Go
Raw Normal View History

2016-12-02 07:38:54 +00:00
package main
import "html/template"
2016-12-02 07:38:54 +00:00
type Topic struct
{
ID int
Title string
Content string
CreatedBy int
Is_Closed bool
Sticky bool
CreatedAt string
ParentID int
Status string
}
type TopicUser struct
{
ID int
Title string
Content interface{}
CreatedBy int
Is_Closed bool
Sticky bool
CreatedAt string
ParentID int
Status string
CreatedByName string
Avatar string
Css template.CSS
ContentLines int
Tag string
URL string
URLPrefix string
URLName string
}