Files
luos/workflow/engine/classes/ObjectDocument.php

25 lines
370 B
PHP
Raw Normal View History

<?php
2017-08-11 11:10:27 -04:00
/**
2017-08-11 11:10:27 -04:00
* Object Document class
2012-10-09 12:58:15 -04:00
*
2017-08-11 11:10:27 -04:00
* @package workflow.engine.ProcessMaker
*/class ObjectDocument
{
2017-08-11 11:10:27 -04:00
public $type;
public $name;
public $data;
public $origin;
2012-10-09 12:58:15 -04:00
2017-08-11 11:10:27 -04:00
/**
* Constructor
*/
public function __construct()
2012-10-09 12:58:15 -04:00
{
2017-08-11 11:10:27 -04:00
$this->type = '';
$this->name = '';
$this->data = '';
$this->origin = '';
2012-10-09 12:58:15 -04:00
}
}