rmmagent/agent/events/structs.go
2022-06-20 16:51:00 -07:00

10 lines
259 B
Go

package events
type EventLogMsg struct {
Source string `json:"source"`
EventType string `json:"eventType"`
EventID uint32 `json:"eventID"`
Message string `json:"message"`
Time string `json:"time"`
UID int `json:"uid"` // for vue
}