import {Event} from '../event/index'; /** * Describes a ProcessModel. * The content is always user-specific and will not contain any information * that a requesting user is not authorized to see. */ export class ProcessModel { public id: string; public xml: string; public startEvents: Array = []; public endEvents: Array = []; }