mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-05 13:17:42 +08:00
10 lines
314 B
Go
10 lines
314 B
Go
|
package model
|
||
|
|
||
|
// AppPort -
|
||
|
type AppPort struct {
|
||
|
ServiceID string `json:"service_id" validate:"required"`
|
||
|
ContainerPort int `json:"container_port" validate:"required"`
|
||
|
PortAlias string `json:"port_alias" validate:"required"`
|
||
|
K8sServiceName string `json:"k8s_service_name" validate:"required"`
|
||
|
}
|