commons-go/model/discovery/Service.go
crusader ab936be303 ing
2018-06-12 22:13:22 +09:00

16 lines
394 B
Go

package discovery
import (
"git.loafle.net/overflow/commons-go/core/util"
"git.loafle.net/overflow/commons-go/model/meta"
)
type Service struct {
MetaCryptoTypeKey *meta.MetaCryptoType `json:"metaCryptoType,omitempty"`
Name string `json:"name,omitempty"`
Port *Port `json:"port,omitempty"`
DiscoveredDate *util.Timestamp `json:"discoveredDate,omitempty"`
}