gosora/forum.go

20 lines
228 B
Go
Raw Normal View History

package main
type Forum struct
{
ID int
Name string
Active bool
LastTopic string
LastTopicID int
LastReplyer string
LastReplyerID int
LastTopicTime string
}
type ForumSimple struct
{
ID int
Name string
Active bool
}