Rainbond/api/model/event_log.go
Quyc dac119b5ee
feat: personal space page (#1391)
Co-authored-by: 曲源成 <quyc@goodrain.com>
2022-10-26 12:09:35 +08:00

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"`
}