2016-12-11 16:06:17 +00:00
|
|
|
/* Copyright Azareal 2016 - 2017 */
|
2016-12-02 07:38:54 +00:00
|
|
|
package main
|
2016-12-03 04:50:35 +00:00
|
|
|
import "html/template"
|
2016-12-02 07:38:54 +00:00
|
|
|
|
|
|
|
type Reply struct
|
|
|
|
{
|
|
|
|
ID int
|
|
|
|
ParentID int
|
|
|
|
Content string
|
2016-12-03 04:50:35 +00:00
|
|
|
ContentHtml template.HTML
|
2016-12-02 07:38:54 +00:00
|
|
|
CreatedBy int
|
|
|
|
CreatedByName string
|
|
|
|
CreatedAt string
|
|
|
|
LastEdit int
|
|
|
|
LastEditBy int
|
2016-12-02 15:03:31 +00:00
|
|
|
Avatar string
|
2016-12-04 06:16:59 +00:00
|
|
|
Css template.CSS
|
2016-12-07 09:34:09 +00:00
|
|
|
ContentLines int
|
|
|
|
Tag string
|
2016-12-09 13:46:29 +00:00
|
|
|
URL string
|
|
|
|
URLPrefix string
|
|
|
|
URLName string
|
2017-01-12 02:55:08 +00:00
|
|
|
Level int
|
2016-12-02 07:38:54 +00:00
|
|
|
}
|