gosora/reply.go

24 lines
354 B
Go
Raw Normal View History

/* Copyright Azareal 2016 - 2017 */
2016-12-02 07:38:54 +00:00
package main
import "html/template"
2016-12-02 07:38:54 +00:00
type Reply struct
{
ID int
ParentID int
Content string
ContentHtml template.HTML
2016-12-02 07:38:54 +00:00
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
2016-12-02 07:38:54 +00:00
}