gosora/forum.go

21 lines
229 B
Go

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
}