11 lines
168 B
Go
11 lines
168 B
Go
|
package powow
|
||
|
|
||
|
type SMSTemplate struct {
|
||
|
ID int `storm:"id,increment"`
|
||
|
SmsName string
|
||
|
FromName string
|
||
|
Content string
|
||
|
ShortLink int
|
||
|
Language string
|
||
|
}
|