0
0
mirror of https://github.com/mrusme/neonmodem.git synced 2025-06-30 22:18:39 -04:00
2024-08-01 14:03:28 -05:00

28 lines
279 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
MetaPath []string
}