mirror of
https://github.com/mrusme/neonmodem.git
synced 2024-12-04 14:46:37 -05:00
18 lines
169 B
Go
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
|
|
}
|