mpp-client-go/mpp/user.go

13 lines
176 B
Go
Executable File

package mpp
type User struct {
Uid string `json:"_id"`
Name string `json:"name"`
Color string `json:"color"`
}
type Participant struct {
User
Id string `json:"id"`
}