1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-06-23 06:35:24 +00:00
neonmodem/models/post/post.go
2022-12-30 01:44:31 -05:00

34 lines
460 B
Go

package post
import (
"github.com/mrusme/gobbs/models/author"
"github.com/mrusme/gobbs/models/reply"
)
type Post struct {
ID string
Subject string
Body string
Type string // "post", "url"
Pinned bool
Closed bool
Author author.Author
Replies []reply.Reply
}
func (post Post) FilterValue() string {
return post.Subject
}
func (post Post) Title() string {
return post.Subject
}
func (post Post) Description() string {
return post.ID
}