2025-01-27 12:09:39 +03:00
|
|
|
package push_common
|
|
|
|
|
2025-01-27 12:53:40 +03:00
|
|
|
type PushId uint32
|
|
|
|
|
|
|
|
func (id PushId) String() string {
|
|
|
|
return uint32ToString(uint32(id))
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2025-01-27 12:09:39 +03:00
|
|
|
type TextVariant struct {
|
|
|
|
Lang int `json:"lang"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Message string `json:"message"`
|
|
|
|
}
|