9 lines
249 B
Go
9 lines
249 B
Go
package pkg
|
|
|
|
type App struct {
|
|
ID int64 `json:"id,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
DeploymentID int64 `json:"deployment_id,omitempty"`
|
|
DeploymentStatus string `json:"deployment_status,omitempty"`
|
|
}
|