10 lines
216 B
Go
10 lines
216 B
Go
|
package model
|
||
|
|
||
|
type Service struct {
|
||
|
Port *Port `json:"port,omitempty"`
|
||
|
|
||
|
ID int `json:"id,omitempty"`
|
||
|
TLSType string `json:"tlsType,omitempty"`
|
||
|
ServiceName string `json:"serviceName,omitempty"`
|
||
|
}
|