10 lines
219 B
Go
Raw Normal View History

2017-11-15 19:38:42 +09:00
package model
type Service struct {
Port *Port `json:"port,omitempty"`
ID int `json:"id,omitempty"`
2017-11-16 20:01:42 +09:00
CryptoType string `json:"cryptoType,omitempty"`
2017-11-15 19:38:42 +09:00
ServiceName string `json:"serviceName,omitempty"`
}