1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-09-29 04:45:55 -04:00
neonmodem/models/reply/reply.go

25 lines
240 B
Go
Raw Normal View History

2022-12-30 01:44:31 -05:00
package reply
import (
"time"
"github.com/mrusme/gobbs/models/author"
)
2022-12-30 01:44:31 -05:00
type Reply struct {
ID string
InReplyTo string
2022-12-30 01:44:31 -05:00
Body string
Deleted bool
CreatedAt time.Time
2022-12-30 01:44:31 -05:00
Author author.Author
Replies []Reply
SysIDX int
2022-12-30 01:44:31 -05:00
}