11 lines
300 B
Go
11 lines
300 B
Go
|
package event
|
||
|
|
||
|
type Event struct {
|
||
|
Id string `json:"id,omitempty"`
|
||
|
RoomId string `json:"roomId,omitempty"`
|
||
|
EventType string `json:"eventType,omitempty"`
|
||
|
Content string `json:"content,omitempty"`
|
||
|
Parent string `json:"parent,omitempty"`
|
||
|
Depth int `json:"depth,omitempty"`
|
||
|
}
|