27 lines
574 B
Go
27 lines
574 B
Go
package app
|
|
|
|
import (
|
|
"database/sql"
|
|
)
|
|
|
|
// TaskWhoRelationChannelWrapper wraps the object with workflow params
|
|
type TaskWhoRelationChannelWrapper struct {
|
|
// Obj workflow_models.TaskWhoRelation
|
|
Principal User
|
|
SagaID string
|
|
SagaType string
|
|
}
|
|
|
|
// TaskWhoRelation is a first class object type
|
|
type TaskWhoRelation struct {
|
|
AccountID string
|
|
CreatedByID string
|
|
CreatedDate sql.NullTime
|
|
ID string
|
|
LastModifiedByID string
|
|
LastModifiedDate sql.NullTime
|
|
RelationID string
|
|
TaskID string
|
|
Type string
|
|
}
|