1
0
mirror of https://github.com/Lukas0025/YAGS.git synced 2025-04-15 11:48:11 +01:00
2023-08-30 10:05:44 +02:00

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);
}
}
?>