8 lines
143 B
Go
8 lines
143 B
Go
|
package push_common
|
||
|
|
||
|
type TextVariant struct {
|
||
|
Lang int `json:"lang"`
|
||
|
Title string `json:"title"`
|
||
|
Message string `json:"message"`
|
||
|
}
|