16 lines
166 B
Go
16 lines
166 B
Go
|
package main
|
||
|
|
||
|
type Topic struct
|
||
|
{
|
||
|
ID int
|
||
|
Title string
|
||
|
Content string
|
||
|
CreatedBy int
|
||
|
Is_Closed bool
|
||
|
Sticky bool
|
||
|
CreatedAt string
|
||
|
ParentID int
|
||
|
Status string
|
||
|
}
|
||
|
|