10 lines
300 B
Go
10 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"`
|
|
ParentId string `json:"parent,omitempty"`
|
|
Depth int `json:"depth,omitempty"`
|
|
}
|