1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-06-16 06:25:23 +00:00
neonmodem/models/reply/reply.go

26 lines
259 B
Go
Raw Normal View History

2022-12-30 06:44:31 +00:00
package reply
import (
"time"
2023-01-07 00:46:41 +00:00
"github.com/mrusme/neonmodem/models/author"
)
2022-12-30 06:44:31 +00:00
type Reply struct {
ID string
InReplyTo string
2023-01-05 22:40:18 +00:00
Index int
2022-12-30 06:44:31 +00:00
Body string
Deleted bool
CreatedAt time.Time
2022-12-30 06:44:31 +00:00
Author author.Author
Replies []Reply
SysIDX int
2022-12-30 06:44:31 +00:00
}