mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-03 12:18:09 +08:00
dac119b5ee
Co-authored-by: 曲源成 <quyc@goodrain.com>
21 lines
492 B
Go
21 lines
492 B
Go
package model
|
|
|
|
import "github.com/goodrain/rainbond/db/model"
|
|
|
|
// HistoryLogFile represents a history log file for service
|
|
type HistoryLogFile struct {
|
|
Filename string `json:"filename"`
|
|
RelativePath string `json:"relative_path"`
|
|
}
|
|
|
|
// MyTeamsEventsReq -
|
|
type MyTeamsEventsReq struct {
|
|
TenantIDs []string `json:"tenant_ids"`
|
|
}
|
|
|
|
// MyTeamsEvent -
|
|
type MyTeamsEvent struct {
|
|
ServiceEvent *model.ServiceEvent `json:"service_event"`
|
|
BuildList *BuildListRespVO `json:"build_list"`
|
|
}
|