File size: 252 Bytes
7b9f3e3
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
package types

type Client struct {
	Id        string   `json:"id" bson:"id"`
	SessionId string   `json:"session_id" bson:"session_id"`
	ViewPort  ViewPort `json:"viewport"`
}

type ViewPort struct {
	Rows uint `json:"rows"`
	Cols uint `json:"cols"`
}