ouichat/core/message.go

12 lines
160 B
Go
Raw Normal View History

2020-05-14 02:52:06 +00:00
package core
import "time"
type Message struct {
Time time.Time `json:"time"`
MessageID string
Author string
AuthorID string
Contents string
}