mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-23 16:00:52 +00:00
17 lines
244 B
Go
17 lines
244 B
Go
package dto
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/agent/app/model"
|
|
)
|
|
|
|
type SearchTaskLogReq struct {
|
|
Status string `json:"status"`
|
|
Type string `json:"type"`
|
|
TaskID string `json:"taskID"`
|
|
PageInfo
|
|
}
|
|
|
|
type TaskDTO struct {
|
|
model.Task
|
|
}
|