13 lines
211 B
Go
13 lines
211 B
Go
|
package model
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type SMS struct {
|
||
|
ID int `storm:"id,increment"`
|
||
|
Body string
|
||
|
Seen bool `storm:"index"`
|
||
|
Recipient string
|
||
|
SentAt time.Time
|
||
|
Metadata map[string]interface{}
|
||
|
}
|