2022-12-30 01:44:31 -05:00
|
|
|
package reply
|
|
|
|
|
2022-12-30 02:48:53 -05:00
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/mrusme/gobbs/models/author"
|
|
|
|
)
|
2022-12-30 01:44:31 -05:00
|
|
|
|
|
|
|
type Reply struct {
|
2023-01-01 22:51:16 -05:00
|
|
|
ID string
|
|
|
|
InReplyTo string
|
2023-01-05 17:40:18 -05:00
|
|
|
Index int
|
2022-12-30 01:44:31 -05:00
|
|
|
|
|
|
|
Body string
|
|
|
|
|
2022-12-31 13:42:30 -05:00
|
|
|
Deleted bool
|
|
|
|
|
2022-12-30 02:48:53 -05:00
|
|
|
CreatedAt time.Time
|
|
|
|
|
2022-12-30 01:44:31 -05:00
|
|
|
Author author.Author
|
2022-12-31 13:42:30 -05:00
|
|
|
|
|
|
|
Replies []Reply
|
2023-01-01 22:51:16 -05:00
|
|
|
|
|
|
|
SysIDX int
|
2022-12-30 01:44:31 -05:00
|
|
|
}
|