gmessages/libgm/events/useralerts.go

12 lines
175 B
Go
Raw Normal View History

2023-06-30 09:54:08 +00:00
package events
2023-06-30 13:09:29 +00:00
type BrowserActive struct {
SessionId string
2023-06-30 09:54:08 +00:00
}
func NewBrowserActive(sessionId string) *BrowserActive {
2023-06-30 13:09:29 +00:00
return &BrowserActive{
SessionId: sessionId,
2023-06-30 09:54:08 +00:00
}
}