1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-07-21 03:14:14 -04:00
neonmodem/models/reply/reply.go
2022-12-31 13:42:30 -05:00

22 lines
202 B
Go

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