lib/app/taskrelation.go

27 lines
557 B
Go

package app
import (
"database/sql"
)
// TaskRelationChannelWrapper wraps the object with workflow params
type TaskRelationChannelWrapper struct {
// Obj workflow_models.TaskRelation
Principal User
SagaID string
SagaType string
}
// TaskRelation is a first class object type
type TaskRelation struct {
AccountID string
CreatedByID string
CreatedDate sql.NullTime
ID string
IsWhat bool
LastModifiedByID string
LastModifiedDate sql.NullTime
RelationID string
TaskID string
}