13 lines
153 B
Go
13 lines
153 B
Go
|
package main
|
||
|
|
||
|
type Forum struct
|
||
|
{
|
||
|
ID int
|
||
|
Name string
|
||
|
LastTopic string
|
||
|
LastTopicID int
|
||
|
LastReplyer string
|
||
|
LastReplyerID int
|
||
|
LastTopicTime string
|
||
|
}
|