mirror of
https://github.com/Lukas0025/YAGS.git
synced 2025-04-04 06:51:33 +01:00
14 lines
432 B
PHP
14 lines
432 B
PHP
<?php
|
|
namespace DAL;
|
|
|
|
class processPipe extends \wsos\database\core\row {
|
|
public \wsos\database\types\text $name;
|
|
public \wsos\database\types\json $pipe;
|
|
|
|
function __construct($id = null, $name = "", $pipe = []) {
|
|
parent::__construct($id);
|
|
$this->name = new \wsos\database\types\text($name);
|
|
$this->pipe = new \wsos\database\types\json($pipe);
|
|
}
|
|
}
|
|
?>
|