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 {
2023-07-15 23:24:39 +00:00
SessionID string
2023-06-30 09:54:08 +00:00
}
2023-07-15 23:24:39 +00:00
func NewBrowserActive(sessionID string) *BrowserActive {
2023-06-30 13:09:29 +00:00
return &BrowserActive{
2023-07-15 23:24:39 +00:00
SessionID: sessionID,
2023-06-30 09:54:08 +00:00
}
}