mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-07 21:19:51 +00:00
14 lines
311 B
Go
14 lines
311 B
Go
package dtos
|
|
|
|
import "github.com/usual2970/certimate/internal/domain"
|
|
|
|
type WorkflowStartRunReq struct {
|
|
WorkflowId string `json:"-"`
|
|
RunTrigger domain.WorkflowTriggerType `json:"trigger"`
|
|
}
|
|
|
|
type WorkflowCancelRunReq struct {
|
|
WorkflowId string `json:"-"`
|
|
RunId string `json:"-"`
|
|
}
|