Initial commit
This commit is contained in:
12
internal/model/sms.go
Normal file
12
internal/model/sms.go
Normal file
@ -0,0 +1,12 @@
|
||||
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{}
|
||||
}
|
Reference in New Issue
Block a user