1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-06-16 06:25:23 +00:00
neonmodem/models/reply/reply.go
2022-12-30 02:48:53 -05:00

18 lines
169 B
Go

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