1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-06-30 06:45:24 +00:00
neonmodem/models/reply/reply.go
2023-01-06 19:46:41 -05:00

26 lines
259 B
Go

package reply
import (
"time"
"github.com/mrusme/neonmodem/models/author"
)
type Reply struct {
ID string
InReplyTo string
Index int
Body string
Deleted bool
CreatedAt time.Time
Author author.Author
Replies []Reply
SysIDX int
}