11 lines
258 B
Go
Raw Normal View History

2017-12-04 15:50:11 +09:00
package model
2017-12-13 19:17:03 +09:00
import "encoding/json"
2017-12-04 15:50:11 +09:00
type Connection struct {
2017-12-13 19:17:03 +09:00
IP string `json:"ip,omitempty"`
Port json.Number `json:"port,Number,omitempty"`
PortType string `json:"portType,omitempty"`
SSL bool `json:"ssl,omitempty"`
2017-12-04 15:50:11 +09:00
}