mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-08 01:20:07 +08:00
16 lines
213 B
Go
16 lines
213 B
Go
package dto
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/agent/app/model"
|
|
)
|
|
|
|
type SearchTaskLogReq struct {
|
|
Status string `json:"status"`
|
|
Type string `json:"type"`
|
|
PageInfo
|
|
}
|
|
|
|
type TaskDTO struct {
|
|
model.Task
|
|
}
|