1
0
Fork 0
neonmodem/models/reply/reply.go

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
}