1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-19 16:29:17 +08:00
1Panel/agent/app/dto/logs.go

16 lines
213 B
Go
Raw Normal View History

2024-07-23 14:48:37 +08:00
package dto
import (
2024-08-01 17:37:36 +08:00
"github.com/1Panel-dev/1Panel/agent/app/model"
2024-07-23 14:48:37 +08:00
)
2024-08-01 17:37:36 +08:00
type SearchTaskLogReq struct {
Status string `json:"status"`
Type string `json:"type"`
PageInfo
}
type TaskDTO struct {
model.Task
}