15 lines
160 B
Go
15 lines
160 B
Go
|
package main
|
||
|
|
||
|
type Reply struct
|
||
|
{
|
||
|
ID int
|
||
|
ParentID int
|
||
|
Content string
|
||
|
CreatedBy int
|
||
|
CreatedByName string
|
||
|
CreatedAt string
|
||
|
LastEdit int
|
||
|
LastEditBy int
|
||
|
}
|
||
|
|