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

12 lines
133 B
Go
Raw Normal View History

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