1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-07-07 02:54:15 -04:00
neonmodem/models/reply/reply.go

18 lines
169 B
Go
Raw Normal View History

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