ec2c02d7c9
Added the report system. Rebranded the project. Improved the installation instructions. Changed the open / close status CSS. Added the Hello World plugin. Added the Skeleton plugin.
24 lines
354 B
Go
24 lines
354 B
Go
/* Copyright Azareal 2016 - 2017 */
|
|
package main
|
|
import "html/template"
|
|
|
|
type Reply struct
|
|
{
|
|
ID int
|
|
ParentID int
|
|
Content string
|
|
ContentHtml template.HTML
|
|
CreatedBy int
|
|
CreatedByName string
|
|
CreatedAt string
|
|
LastEdit int
|
|
LastEditBy int
|
|
Avatar string
|
|
Css template.CSS
|
|
ContentLines int
|
|
Tag string
|
|
URL string
|
|
URLPrefix string
|
|
URLName string
|
|
}
|