mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-09 05:59:50 +00:00
9 lines
211 B
Go
9 lines
211 B
Go
package dtos
|
|
|
|
import "github.com/usual2970/certimate/internal/domain"
|
|
|
|
type WorkflowRunReq struct {
|
|
WorkflowId string `json:"-"`
|
|
Trigger domain.WorkflowTriggerType `json:"trigger"`
|
|
}
|