1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-10-13 05:03:37 -04:00
neonmodem/models/reply/reply.go

26 lines
259 B
Go
Raw Normal View History

2022-12-30 01:44:31 -05:00
package reply
import (
"time"
2023-01-06 19:46:41 -05:00
"github.com/mrusme/neonmodem/models/author"
)
2022-12-30 01:44:31 -05:00
type Reply struct {
ID string
InReplyTo string
2023-01-05 17:40:18 -05:00
Index int
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
}