1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-06-23 06:35:24 +00:00
neonmodem/models/reply/reply.go

18 lines
169 B
Go
Raw Normal View History

2022-12-30 06:44:31 +00:00
package reply
import (
"time"
"github.com/mrusme/gobbs/models/author"
)
2022-12-30 06:44:31 +00:00
type Reply struct {
ID string
Body string
CreatedAt time.Time
2022-12-30 06:44:31 +00:00
Author author.Author
}