9 lines
207 B
Go
Raw Normal View History

2017-12-04 15:50:11 +09:00
package model
type Connection struct {
IP string `json:"ip,omitempty"`
Port string `json:"port,omitempty"`
PortType string `json:"portType,omitempty"`
SSL bool `json:"ssl,omitempty"`
}