mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
13 lines
250 B
TypeScript
13 lines
250 B
TypeScript
export interface Process {
|
|
category: string;
|
|
deploymentId: string;
|
|
description: string;
|
|
hasStartForm: boolean;
|
|
id: string;
|
|
key: string;
|
|
name: string;
|
|
tenantId: string;
|
|
version: number;
|
|
metaDataValues: any[];
|
|
}
|