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