gmessages/libgm/events/useralerts.go
2023-06-30 16:26:49 +03:00

23 lines
351 B
Go

package events
type BrowserActive struct {
SessionID string
}
func NewBrowserActive(sessionID string) *BrowserActive {
return &BrowserActive{
SessionID: sessionID,
}
}
type Battery struct{}
func NewBattery() *Battery {
return &Battery{}
}
type DataConnection struct{}
func NewDataConnection() *DataConnection {
return &DataConnection{}
}