12 lines
162 B
Go
12 lines
162 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type Message struct {
|
|
ID int
|
|
Sender string // username
|
|
Channel Channel // channel.id
|
|
Time time.Time
|
|
Content string
|
|
}
|