gosora/forum.go

18 lines
202 B
Go

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