mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
10 lines
252 B
TypeScript
10 lines
252 B
TypeScript
export interface ICommon_Model_Workflow_Action {
|
|
id :bigint ,
|
|
name :string,
|
|
system :number,
|
|
description :string,
|
|
source_node_id :bigint ,
|
|
dest_node_id :bigint ,
|
|
workflow_id :bigint,
|
|
}
|
|
export const Table_Workflow_Action="workflow_action" |